SQLiteObject-class {RSQLite}R Documentation

Class SQLiteObject

Description

Base class for all SQLite-specific DBI classes

Objects from the Class

A virtual Class: No objects may be created from it.

Extends

Class "DBIObject", directly. Class "dbObjectId", directly.

Methods

coerce

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

dbDataType

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

isSQLKeyword

signature(dbObj = "SQLiteObject", name = "character"): ...

make.db.names

signature(dbObj = "SQLiteObject", snames = "character"): ...

SQLKeywords

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

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 = "rsdbi.db")

## End(Not run)

[Package RSQLite version 0.11.4 Index]