db-meta {RMySQL} | R Documentation |
Database interface meta-data
Description
Database interface meta-data
Usage
## S4 method for signature 'MySQLConnection'
dbGetInfo(dbObj, what = "", ...)
## S4 method for signature 'MySQLConnection'
dbListResults(conn, ...)
## S4 method for signature 'MySQLConnection'
summary(object, verbose = FALSE, ...)
## S4 method for signature 'MySQLConnection'
dbGetException(conn, ...)
## S4 method for signature 'MySQLConnection'
show(object)
Arguments
what |
optional |
... |
Other arguments for compatibility with generic. |
conn , dbObj , object |
MySQLConnection object. |
verbose |
If |
Examples
if (mysqlHasDefault()) {
con <- dbConnect(RMySQL::MySQL(), dbname = "test")
summary(con)
dbGetInfo(con)
dbListResults(con)
dbListTables(con)
dbDisconnect(con)
}
[Package RMySQL version 0.10.27 Index]