I just updated all R packages including sqldf
today. Then I kept getting warning message as follows:
Warning message:
Quoted identifiers should have class SQL, use DBI::SQL() if the caller performs the quoting.
What is the problem here? Is this warning serious? How to fix it?
Update:
This happens after updating sqldf
and its associated packages. The command I use is sqldf("select * from something order by something")
library(sqldf);sqldf("select * from iris limit 1");sqldf("select * from iris limit 1")
You should get the warning the first time, but not the second. – Purvis