powered by
Database interface meta-data
# S4 method for MySQLConnection dbGetInfo(dbObj, what = "", ...)# S4 method for MySQLConnection dbListResults(conn, ...)# S4 method for MySQLConnection summary(object, verbose = FALSE, ...)# S4 method for MySQLConnection dbGetException(conn, ...)# S4 method for MySQLConnection show(object)
# S4 method for MySQLConnection dbListResults(conn, ...)
# S4 method for MySQLConnection summary(object, verbose = FALSE, ...)
# S4 method for MySQLConnection dbGetException(conn, ...)
# S4 method for MySQLConnection show(object)
optional
Other arguments for compatibility with generic.
MySQLConnection object.
If TRUE, add extra info.
TRUE
if (mysqlHasDefault()) { con <- dbConnect(RMySQL::MySQL(), dbname = "test") summary(con) dbGetInfo(con) dbListResults(con) dbListTables(con) dbDisconnect(con) }
Run the code above in your browser using DataLab