
DuckDB driver class
Source:R/Connection.R, R/dbDataType__duckdb_driver.R, R/dbGetInfo__duckdb_driver.R, and 2 more
duckdb_driver-class.RdImplements DBIDriver.
Usage
# S4 method for class 'duckdb_driver'
dbDataType(dbObj, obj, ...)
# S4 method for class 'duckdb_driver'
dbGetInfo(dbObj, ...)
# S4 method for class 'duckdb_driver'
dbIsValid(dbObj, ...)
# S4 method for class 'duckdb_driver'
show(object)Slots
database_refexternal pointer to the underlying DuckDB database instance.
confignamed list of DuckDB configuration flags applied when the instance was created.
dbdirpath to the database file, or
":memory:"for an in-memory database.read_onlywhether the database was opened read-only.
convert_optsinternal options controlling how result values are converted to R (bigint handling, time zone, ...).
biginthow 64-bit integers are returned (
"numeric"or"integer64").allow_extensionswhether this driver permits loading DuckDB extensions (
INSTALL/LOAD), resolved once when the driver is created. See theallow_extensionsargument ofduckdb().