sdfImportSQLite {SQLiteDF}R Documentation

Import SQLite data to an SQLite Data Frame

Description

Import from SQLite tables directly.

Usage

sdfImportSQLite(dbfilename, tablename, iname = tablename)

Arguments

dbfilename file name of the SQLite database.
tablename name of the table inside the SQLite database that will be imported
iname the internal name of the created SDF

Value

The SDF containing the imported data.

Note

Row names is just the sequence from 1 to number of rows. Text columns are converted into factors. Blobs are not supported.

Author(s)

Miguel Angel R. Manese

See Also

sdfImportDBI

Examples

## Not run: 
data.sdf <- sdfImportSQLite("data.db", "fuel_frame", iname="fuel_frame")
## End(Not run)

[Package SQLiteDF version 0.1.32 Index]