Skip to content

Instantly share code, notes, and snippets.

@skvrnami
Created May 19, 2021 12:36
Show Gist options
  • Save skvrnami/873bab03671892a1e30154bfee0a83df to your computer and use it in GitHub Desktop.
Save skvrnami/873bab03671892a1e30154bfee0a83df to your computer and use it in GitHub Desktop.
library(RSQLite)
sqlite <- dbDriver("SQLite")
# Stahni SQLite DB z webu, pokud neexistuje
if(!file.exists("parlgov-development.db")){
download.file("http://www.parlgov.org/static/data/parlgov-development.db",
dest = "parlgov-development.db")
}
# pripoj se k DB
con <- dbConnect(sqlite, "parlgov-development.db")
# seznam tabulek
dbListTables(con)
# TODO: práce se DB
# odpojit se od DB
dbDisconnect(con)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment