CITAN (version 2011.08-1)

lbsConnect: Connect to a Local Bibliometric Storage

Description

Connects to a Local Bibliometric Storage handled by the SQLite engine (see RSQLite package documentation).

Usage

lbsConnect(dbfilename)

Arguments

dbfilename
name of the file storing the SQLite database.

Value

  • An object of type SQLiteConnection. It is used to direct commands to the SQLite engine.

Details

Do not forget to close the connection (represented by the object returned) with dbDisconnect after use. Note that you may freely access the database using functions from the DBI package called on the returned connection object.

See Also

lbsCreate, dbDisconnect

Examples

Run this code
conn <- lbsConnect("Bibliometrics.db");
## ...
dbDisconnect(conn);

Run the code above in your browser using DataLab