Using local filesystem database RSQLite::SQLite()
oh_con(
path_db = system.file("offhab.duckdb", package = "offhabr"),
read_only = T
)
path to database file, defaults to duckdb in this R package
only applicable to duckdb (not SQLite); defaults to TRUE; vs set to FALSE if writing to database
a DBI::dbConnect()
object
if (FALSE) {
con <- oh_con()
DBI::dbListTables(con)
}