I may have overlooked something, but when using the RSQLite package, can I still use the special string “:memory:” in the R script to speed up data retrieval? Yes, it can still use the special s
Tag: RSQLite
How to execute multiple RSQLite statements at a time or how to dump the entire file?
Using RSQLite to build a SQLite database I want to send multiple statements at once-is this possible?
Why these don’t work:
sql <- readLines("createtables.sql") dbSendQuery(con,sql ) ……