Skip to content

Instantly share code, notes, and snippets.

@scraperdragon
Last active December 14, 2015 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scraperdragon/5081659 to your computer and use it in GitHub Desktop.
Save scraperdragon/5081659 to your computer and use it in GitHub Desktop.
Make R talk SQLite.
install.packages("RSQLite") [note: compiles SQLite]
library(RSQLite)
drv <- dbDriver("SQLite")
con <- dbConnect(drv, "demo.sqlite")
dbListTables(con)
dbListFields(con, "table_name")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment