Created
October 25, 2016 05:44
-
-
Save vik-y/1c8f7eb19a77629be5634942d2b9b1a5 to your computer and use it in GitHub Desktop.
Use sqlite table in R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment