SQLiteDriver-class {RSQLite}R Documentation

Class SQLiteDriver

Description

An SQLite driver implementing the R/S-Plus database (DBI) API.

Generators

The main generators are dbDriver and SQLite.

Extends

Class "DBIDriver", directly. Class "SQLiteObject", directly. Class "DBIObject", by class "DBIDriver". Class "dbObjectId", by class "SQLiteObject".

Methods

coerce

signature(from = "SQLiteObject", to = "SQLiteDriver"): ...

dbConnect

signature(drv = "SQLiteDriver"): ...

dbGetInfo

signature(dbObj = "SQLiteDriver"): ...

dbListConnections

signature(drv = "SQLiteDriver"): ...

dbUnloadDriver

signature(drv = "SQLiteDriver"): ...

summary

signature(object = "SQLiteDriver"): ...

Author(s)

R-SIG-DB

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

DBI classes: SQLiteObject-class SQLiteDriver-class SQLiteConnection-class SQLiteResult-class

Examples

## Not run: 
drv <- dbDriver("SQLite")
con <- dbConnect(drv, dbname="path/to/dbfile")

## End(Not run)

[Package RSQLite version 0.11.4 Index]