db_exec | R Documentation |
The duckplyr package relies on a DBI connection
to an in-memory database.
The db_exec()
function allows running SQL statements
with side effects on this connection.
It can be used to execute statements that start with
PRAGMA
, SET
, or ATTACH
to, e.g., set up credentials, change configuration options,
or attach other databases.
See https://duckdb.org/docs/configuration/overview.html
for more information on the configuration options,
and https://duckdb.org/docs/sql/statements/attach.html
for attaching databases.
db_exec(sql, ..., con = NULL)
sql |
The statement to run. |
... |
These dots are for future extensions and must be empty. |
con |
The connection, defaults to the default connection. |
The return value of the DBI::dbExecute()
call, invisibly.
read_sql_duckdb()
db_exec("SET threads TO 2")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.