I\'m having some difficulty inserting a data frame into a mySql database using RODBC. Below is the code I\'m using:
data <- data.frame(analysedDataID=c(1,2,3
If the issue is in fact with case-sensitivity, then it looks like there's an easy fix without changing any functions by using the "preserve" option, which appears in the line noted by Ari B. Friedman: "nochange=cnames". So, when you initially create your RODBC channel, you can simply specify that as the case option:
my_sql_channel <<- odbcConnect("myOdbc", case="nochange")