| dbGetInfo-methods {RSQLite} | R Documentation |
These methods are straight-forward implementations of the corresponding generic functions.
SQLiteResult.
See the Database Interface definition document
DBI.pdf in the base directory of this package
or http://developer.r-project.org/db.
SQLite,
dbDriver,
dbConnect,
dbSendQuery,
dbGetQuery,
fetch,
dbCommit,
dbGetInfo,
dbListTables,
dbReadTable.
drv <- dbDriver("SQLite")
con <- dbConnect(drv)
dbListTables(con)
rs <- dbSendQuery(con, query.sql)
dbGetStatement(rs)
dbHasCompleted(rs)
info <- dbGetInfo(rs)
names(dbGetInfo(drv))
# DBIConnection info
names(dbGetInfo(con))
# DBIResult info
names(dbGetInfo(rs))