Database interface meta-data
# S4 method for class 'MySQLConnection'
dbGetInfo(dbObj, what = "", ...)
# S4 method for class 'MySQLConnection'
dbListResults(conn, ...)
# S4 method for class 'MySQLConnection'
summary(object, verbose = FALSE, ...)
# S4 method for class 'MySQLConnection'
dbGetException(conn, ...)
# S4 method for class 'MySQLConnection'
show(object)if (mysqlHasDefault()) {
con <- dbConnect(RMySQL::MySQL(), dbname = "test")
summary(con)
dbGetInfo(con)
dbListResults(con)
dbListTables(con)
dbDisconnect(con)
}
#> Could not initialise default MySQL database. If MySQL is running
#> check that you have a ~/.my.cnf file that contains a [rs-dbi] section
#> describing how to connect to a test database.