SQLiteDriver objects are created by dbSendQuery() or 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 RSQLite.
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 | ## S4 method for signature 'SQLiteResult'
dbIsValid(dbObj, ...)
## S4 method for signature 'SQLiteResult'
dbBind(res, params, ...)
## S4 method for signature 'SQLiteResult'
dbFetch(res, n = -1, ...,
row.names = pkgconfig::get_config("RSQLite::row.names.query", FALSE))
## S4 method for signature 'SQLiteResult'
dbClearResult(res, ...)
## S4 method for signature 'SQLiteResult'
dbColumnInfo(res, ...)
## S4 method for signature 'SQLiteResult'
dbGetRowsAffected(res, ...)
## S4 method for signature 'SQLiteResult'
dbGetRowCount(res, ...)
## S4 method for signature 'SQLiteResult'
dbHasCompleted(res, ...)
## S4 method for signature 'SQLiteResult'
dbGetStatement(res, ...)
|
The corresponding generic functions
DBI::dbFetch(), DBI::dbClearResult(), and 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.