sdfImportSQLite           package:SQLiteDF           R Documentation

_I_m_p_o_r_t _S_Q_L_i_t_e _d_a_t_a _t_o _a_n _S_Q_L_i_t_e _D_a_t_a _F_r_a_m_e

_D_e_s_c_r_i_p_t_i_o_n:

     Import from SQLite tables directly.

_U_s_a_g_e:

     sdfImportSQLite(dbfilename, tablename, iname = tablename)

_A_r_g_u_m_e_n_t_s:

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

_V_a_l_u_e:

     The SDF containing the imported data.

_N_o_t_e:

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

_A_u_t_h_o_r(_s):

     Miguel Angel R. Manese

_S_e_e _A_l_s_o:

     'sdfImportDBI'

_E_x_a_m_p_l_e_s:

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

