Use sqlite table in R
library("RSQLite") # connect to the sqlite file driver <- dbDriver("SQLite") con = dbConnect(driver, dbname="<absolute-path-to-sqlite-file>") # get a list of all tables alltables = dbListTables(con)