dbListTables-methods {RMySQL}R Documentation

List items from an MySQL DBMS and from objects

Description

These methods are straight-forward implementations of the corresponding generic functions.

Methods

drv
an MySQLDriver.
conn
an MySQLConnection.
name
a character string with the table name.
...
currently not used.

References

See the Database Interface definition document DBI.pdf in the base directory of this package or http://stat.bell-labs.com/RS-DBI.

See Also

MySQL, dbGetInfo, dbColumnInfo, dbDriver, dbConnect, dbSendQuery

Examples

## Not run: 
drv <- dbDriver("MySQL")
# after working awhile...
for(con in dbListConnections(drv)){
   dbGetStatement(dbListResults(con))
}
## End(Not run)

[Package RMySQL version 0.6-0 Index]