dbListTables-methods {RSQLite}R Documentation

List items from an SQLite DBMS and from objects

Description

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

Methods

drv
an SQLiteDriver.
conn
an SQLiteConnection.
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://developer.r-project.org/db.

See Also

SQLite, dbGetInfo, dbColumnInfo, dbDriver, dbConnect, dbSendQuery

Examples

drv <- dbDriver("SQLite")
# after working awhile...
for(con in dbListConnections(odbc)){
   dbGetStatement(dbListResults(con))
}


[Package Contents]