rbindSdf              package:SQLiteDF              R Documentation

_A_d_d _R_o_w_s _t_o _a _S_D_F

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

     Adds rows to a SQLite data frame.

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

     rbindSdf(sdf, df)

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

     sdf: the SQLite data frame with which to insert new data. 

      df: the data frame to attach

_D_e_t_a_i_l_s:

     This is equivalent to performing an 'insert' statement. The data
     frame names and the column types must match, although they may be
     not arranged exactly the same.

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

     Returns the 1st argument (sdf).

_N_o_t_e:

     Currently SDFs are not supported as the 2nd arg. This could be
     achieved by doing batch rbindSdf to chunks of another SDF.

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

     Miguel A. R. Manese

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

         b1 <- sqlite.data.frame(iris)
         rbindSdf(b1, iris)
         nrow(b1)  # nrow(iris) * 2

