Methods for accessing result sets for queries on DuckDB connections. Implements DBIResult.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## S4 method for signature 'duckdb_result'
show(object)
## S4 method for signature 'duckdb_result'
dbClearResult(res, ...)
## S4 method for signature 'duckdb_result'
dbFetch(res, n = -1, ...)
## S4 method for signature 'duckdb_result'
dbHasCompleted(res, ...)
## S4 method for signature 'duckdb_result'
dbGetInfo(dbObj, ...)
## S4 method for signature 'duckdb_result'
dbIsValid(dbObj, ...)
## S4 method for signature 'duckdb_result'
dbGetStatement(res, ...)
## S4 method for signature 'duckdb_result'
dbColumnInfo(res, ...)
## S4 method for signature 'duckdb_result'
dbGetRowCount(res, ...)
## S4 method for signature 'duckdb_result'
dbGetRowsAffected(res, ...)
## S4 method for signature 'duckdb_result'
dbBind(res, params, ...)
|
object |
Any R object |
res |
An object inheriting from DBIResult. |
... |
Other arguments passed on to methods. |
n |
maximum number of records to retrieve per fetch. Use |
dbObj |
An object inheriting from DBIObject, i.e. DBIDriver, DBIConnection, or a DBIResult |
params |
A list of bindings, named or unnamed. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.