Created
May 19, 2021 12:36
-
-
Save skvrnami/873bab03671892a1e30154bfee0a83df to your computer and use it in GitHub Desktop.
This file contains 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) | |
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