Get information about a MySQL driver.
# S4 method for class 'MySQLDriver'
dbGetInfo(dbObj, what = "", ...)
# S4 method for class 'MySQLDriver'
dbListConnections(drv, ...)
# S4 method for class 'MySQLDriver'
summary(object, verbose = FALSE, ...)
# S4 method for class 'MySQLDriver'
show(object)Object created by MySQL.
Optional
Ignored. Needed for compatibility with generic.
If TRUE, print extra info.
db <- RMySQL::MySQL()
db
#> <MySQLDriver>
dbGetInfo(db)
#> $connectionIds
#> list()
#>
#> $fetch_default_rec
#> [1] 500
#>
#> $length
#> [1] 16
#>
#> $num_con
#> [1] 0
#>
#> $counter
#> [1] 0
#>
#> $clientVersion
#> [1] "8.0.39"
#>
dbListConnections(db)
#> list()
summary(db)
#> <MySQLDriver>
#> Max connections: 16
#> Cur connections: 0
#> Total connections: 0
#> Default records per fetch: 500