rq_connection_advice | R Documentation |
These settings are set by the package maintainers based on experience with specific databases.
rq_connection_advice(db)
db |
database connection handle |
named list of options
rq_connection_tests
if(requireNamespace("DBI", quietly = TRUE) && requireNamespace("RSQLite", quietly = TRUE)) {
my_db <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
print(rq_connection_name(my_db))
print(rq_connection_advice(my_db))
DBI::dbDisconnect(my_db)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.