
Last chance! 50% off unlimited learning
Sale ends in
See documentation of generics for more details.
# S4 method for MySQLResult
dbColumnInfo(res, ...)# S4 method for MySQLResult
dbGetRowsAffected(res, ...)
# S4 method for MySQLResult
dbGetRowCount(res, ...)
# S4 method for MySQLResult
dbHasCompleted(res, ...)
# S4 method for MySQLResult
dbGetException(conn, ...)
# S4 method for MySQLResult
summary(object, verbose = FALSE, ...)
# S4 method for MySQLResult
show(object)
An object of class MySQLResult
Ignored. Needed for compatibility with generic
If TRUE
, print extra information.
if (mysqlHasDefault()) {
con <- dbConnect(RMySQL::MySQL(), dbname = "test")
dbWriteTable(con, "t1", datasets::USArrests, overwrite = TRUE)
rs <- dbSendQuery(con, "SELECT * FROM t1 WHERE UrbanPop >= 80")
dbGetStatement(rs)
dbHasCompleted(rs)
dbGetInfo(rs)
dbColumnInfo(rs)
dbClearResult(rs)
dbRemoveTable(con, "t1")
dbDisconnect(con)
}
Run the code above in your browser using DataLab