I've been using sqldf in my R-scripts until now when I got the following error:
library(sqldf)
data(mtcars)
out <- sqldf("SELECT * FROM mtcars")
> Error in rsqlite_send_query(conn@ptr, statement) : no such table: mtcars
This hasn't been a problem before now, anyone know what's the issue?
I had this problem with 0.4-10 from CRAN (Windows 10).
Then I upgraded from GitHub, version 0.4-11
Looking at the last two commits from GitHub, no substantial change has been done to
sqldf
package.DBI
did get upgraded to 0.7, though, which might have solved the problem. Gabor might chip in with the details.