| dbSendQuery-methods {RSQLite} | R Documentation |
These methods are straight-forward implementations of the corresponding generic functions.
SQLiteConnection object.
SQLiteResult object.
See the Database Interface definition document
DBI.pdf in the base directory of this package
or http://stat.bell-labs.com/RS-DBI.
SQLite,
dbDriver,
dbConnect,
fetch,
dbCommit,
dbGetInfo,
dbReadTable.
## Not run:
drv <- dbDriver("MySQL")
con <- dbConnect(drv)
res <- dbSendQuery(con, "SELECT * from liv25")
data <- fetch(res, n = -1)
## End(Not run)