| SQLiteObject-class {RSQLite} | R Documentation |
Base class for all SQLite-specific DBI classes
A virtual Class: No objects may be created from it.
Class "DBIObject", directly.
Class "dbObjectId", directly.
signature(from = "SQLiteObject", to = "SQLiteDriver"): ... signature(dbObj = "SQLiteObject"): ... signature(dbObj = "SQLiteObject", name = "character"): ... signature(dbObj = "SQLiteObject", snames = "character"): ... signature(dbObj = "SQLiteObject"): ... R-SIG-DB
See the Database Interface definition document
DBI.pdf in the base directory of this package
or http://stat.bell-labs.com/RS-DBI.
DBI classes:
SQLiteObject-class
SQLiteDriver-class
SQLiteConnection-class
SQLiteResult-class
## Not run:
drv <- dbDriver("SQLite")
con <- dbConnect(drv, dbname = "rsdbi.db")
## End(Not run)