Class SQLiteResult (and methods)
Source:R/SQLiteResult.R
, R/dbBind_SQLiteResult.R
, R/dbClearResult_SQLiteResult.R
, and 7 more
SQLiteResult-class.Rd
SQLiteDriver 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 DBI::DBIResult class.
The "Usage" section lists the class methods overridden by RSQLite.
Usage
# S4 method for class 'SQLiteResult'
dbBind(res, params, ...)
# S4 method for class 'SQLiteResult'
dbClearResult(res, ...)
# S4 method for class 'SQLiteResult'
dbColumnInfo(res, ...)
# S4 method for class 'SQLiteResult'
dbFetch(
res,
n = -1,
...,
row.names = pkgconfig::get_config("RSQLite::row.names.query", FALSE)
)
# S4 method for class 'SQLiteResult'
dbGetRowCount(res, ...)
# S4 method for class 'SQLiteResult'
dbGetRowsAffected(res, ...)
# S4 method for class 'SQLiteResult'
dbGetStatement(res, ...)
# S4 method for class 'SQLiteResult'
dbHasCompleted(res, ...)
# S4 method for class 'SQLiteResult'
dbIsValid(dbObj, ...)
See also
The corresponding generic functions
DBI::dbFetch()
, DBI::dbClearResult()
, and DBI::dbBind()
,
DBI::dbColumnInfo()
, DBI::dbGetRowsAffected()
, DBI::dbGetRowCount()
,
DBI::dbHasCompleted()
, and DBI::dbGetStatement()
.