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)

Arguments

what

optional

...

Other arguments for compatibility with generic.

conn, dbObj, object

MySQLConnection object.

verbose

If TRUE, add extra info.

Examples

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.