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:")
source share