In [14]:
# Using the library
library("RSQLite")
sqlite <- dbDriver("SQLite")
fdb <- "fsql/mydb.db"
db <- dbConnect(sqlite, fdb)
In [17]:
# Results
tables <- dbListTables(db)
results <- dbSendQuery(db, paste("SELECT * FROM ", tables))
data <- fetch(results,10)
In [18]:
data
Out[18]:
In [ ]:
*