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