dbGetConnectArgs | R Documentation |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.