methods.SQLite {RSQLite}R Documentation

Support SQLite methods

Description

SQLite support methods. For details on what it does, see the documentation of the generic function.

Usage

<generic>.SQLiteManager(obj, ...)   

Arguments

<generic> refers to an actual generic function name, e.g., dbConnect
obj is some kind of SQLite object
... additional arguments

Details

See help(generic) for a description of the functionality that this method provides in the context of the SQLite driver.

See Also

On database managers:

dbManager SQLite load unload

On connections, SQL statements and resultSets:

dbExecStatement dbExec fetch quickSQL

On transaction management:

commit rollback

On meta-data:

describe getVersion getDatabases getTables getFields getCurrentDatabase getTableIndices getException getStatement hasCompleted getRowCount getAffectedRows getNullOk getInfo

Examples

m <- dbManager("SQLite")
con <- dbConnect(m, user="opto", pass="pure-light", dbname="opto")


[Package Contents]