sdfImportSQLite {SQLiteDF} | R Documentation |
Import from SQLite tables directly.
sdfImportSQLite(dbfilename, tablename, iname = tablename)
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 |
The SDF containing the imported data.
Row names is just the sequence from 1 to number of rows. Text columns are converted into factors. Blobs are not supported.
Miguel Angel R. Manese
## Not run: data.sdf <- sdfImportSQLite("data.db", "fuel_frame", iname="fuel_frame") ## End(Not run)