Skip to content
Prev 1325 / 1559 Next

SQL escaping/quoting proposal

It might be reasonable to opt in to this behaviour, but it's dangerous
by default because R is case-sensitive. What happens if you're using
dbWriteTable with this data.frame?

df <- data.frame(a = 1, A = 2)

Hadley