DBIDriver-class {DBI} | R Documentation |
Base class for all DBMS drivers (e.g., ODBC, Oracle, MySQL, PostgreSQL).
A virtual Class: No objects may be created from it.
Class "DBIObject"
, directly.
The generator for classes that extend DBIDriver
is
dbDriver
.
The following methods are defined for classes that extend
DBIDriver
:
signature(drv = "DBIDriver")
: ... signature(drv = "DBIDriver")
: ... signature(dbObj = "DBIDriver")
: ... signature(drv = "DBIDriver")
: ... signature(object = "DBIDriver")
: ... R-SIG-DB
See the Database Interface definition document
DBI.pdf
in the base directory of this package
or http://developer.r-project.org/db.
DBI classes:
DBIObject-class
DBIDriver-class
DBIConnection-class
DBIResult-class
The function dbConnect
is the main generator.
In addition see the help of the methods above.
## Not run: drv <- dbDriver("ODBC") summary(drv) dbListConnections(drv) ## End(Not run)