sqliteRemote: Convenience helper for opening remote SQLite databases over HTTP/HTTPS
Description
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().
if (FALSE) {
if (sqliteHasHttpVFS()) {
con <- sqliteRemote("https://example.org/db.sqlite")
dbGetQuery(con, "SELECT name FROM sqlite_master WHERE type='table'")
dbDisconnect(con)
}
}