AdbiResult-class | R Documentation |
AdbiResult objects are created by DBI::dbSendQuery()
or
DBI::dbSendStatement()
, and encapsulate the result of an SQL statement
(either SELECT
or not). They are a superclass of the DBIResult
class. The "Usage" section lists the class methods overridden by
adbi.
## S4 method for signature 'AdbiResult'
dbBindArrow(res, params, ...)
## S4 method for signature 'AdbiResult'
dbBind(res, params, ...)
## S4 method for signature 'AdbiResult'
dbClearResult(res, ...)
## S4 method for signature 'AdbiResult'
dbColumnInfo(res, ...)
## S4 method for signature 'AdbiResult'
dbGetRowCount(res, ...)
## S4 method for signature 'AdbiResult'
dbGetRowsAffected(res, ...)
## S4 method for signature 'AdbiResult'
dbGetStatement(res, ...)
## S4 method for signature 'AdbiResult'
dbHasCompleted(res, ...)
## S4 method for signature 'AdbiResult'
dbIsValid(dbObj, ...)
## S4 method for signature 'AdbiResult'
show(object)
res |
An object inheriting from DBIResult. |
params |
For |
... |
Other arguments passed on to methods. |
dbObj |
An object inheriting from DBIObject, i.e. DBIDriver, DBIConnection, or a DBIResult |
object |
Any R object |
The corresponding generic functions
DBI::dbFetch()
, DBI::dbClearResult()
, DBI::dbBind()
,
DBI::dbColumnInfo()
, DBI::dbGetRowsAffected()
, DBI::dbGetRowCount()
,
DBI::dbHasCompleted()
, and DBI::dbGetStatement()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.