adbc_driver_log {adbcdrivermanager} | R Documentation |
Log calls to another driver
Description
Useful for debugging or ensuring that certain calls occur during initialization and/or cleanup. The current logging output should not be considered stable and may change in future releases.
Usage
adbc_driver_log()
Value
An object of class 'adbc_driver_log'
Examples
drv <- adbc_driver_log()
db <- adbc_database_init(drv, key = "value")
con <- adbc_connection_init(db, key = "value")
stmt <- adbc_statement_init(con, key = "value")
try(adbc_statement_execute_query(stmt))
adbc_statement_release(stmt)
adbc_connection_release(con)
adbc_database_release(db)
[Package adbcdrivermanager version 0.13.0 Index]