Get connection arguments
Returns the arguments stored in a DBIConnector object for inspection,
optionally evaluating them.
This function is called by dbConnect()
and usually does not need to be called directly.
dbGetConnectArgs(drv, eval = TRUE, ...)
drv |
A object inheriting from DBIConnector. |
eval |
Set to |
... |
Other arguments passed on to methods. Not otherwise used. |
Other DBIConnector generics:
DBIConnector-class
,
dbConnect()
,
dbDataType()
,
dbIsReadOnly()
cnr <- new("DBIConnector", .drv = RSQLite::SQLite(), .conn_args = list(dbname = ":memory:", password = function() "supersecret") ) dbGetConnectArgs(cnr) dbGetConnectArgs(cnr, eval = FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.