Description Usage Arguments Examples
Database interface meta-data
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## 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)
|
what |
optional |
... |
Other arguments for compatibility with generic. |
conn, dbObj, object |
MySQLConnection object. |
verbose |
If |
1 2 3 4 5 6 7 8 9 10 11 | if (mysqlHasDefault()) {
con <- dbConnect(RMySQL::MySQL(), dbname = "test")
summary(con)
dbGetInfo(con)
dbListResults(con)
dbListTables(con)
dbDisconnect(con)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.