| sqliteRemote | R Documentation |
lifecycle::badge("experimental")
Constructs a URI filename and sets the appropriate VFS and immutable flags.
Requires the optional http extension to be available; see sqliteHasHttpVFS().
sqliteRemote(url, immutable = TRUE, ...)
url |
Remote HTTP/HTTPS URL to a SQLite database file. |
immutable |
Logical, append |
... |
Passed through to |
A SQLiteConnection object.
if (sqliteHasHttpVFS()) {
con <- sqliteRemote("https://example.org/db.sqlite")
dbGetQuery(con, "SELECT name FROM sqlite_master WHERE type='table'")
dbDisconnect(con)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.