View source: R/duckdb_config.R
duckdb_get_config | R Documentation |
duckdb reset configuration to default
duckdb_get_config(x = NULL, conn = cached_connection())
x |
parameter name. Omit to see a table of all settings. |
conn |
A connection to a database. |
duckdb_config, duckdb_get_config
# Full config table
duckdb_get_config()
# look up single config value
duckdb_get_config("threads")
# set a different value, test, reset.
duckdb_config(threads = 10)
duckdb_get_config("threads")
duckdb_reset("threads")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.