RSQLite and reading data into memory

It is possible that I missed something, but when using the RSQLite package, you can still use the special line ": memory:" in the R script in order to speed up data retrieval?

+4
source share
1 answer

Yes, you can still use a special line :memory: ?RSQLite:::dbGetInfo look at the help file in ?RSQLite:::dbGetInfo , it has a good example:

 library(RSQLite) data(USArrests) drv <- dbDriver("SQLite") con <- dbConnect(drv, dbname=":memory:") 
+6
source

All Articles