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

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

SQLite, dbGetInfo, dbColumnInfo, dbDriver, dbConnect, dbSendQuery

Examples

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

## End(Not run)

[Package RSQLite version 0.11.1 Index]