getSdf               package:SQLiteDF               R Documentation

_G_e_t _a_n _S_D_F

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

     Gets a handle to an SDF registered in the workspace. The returned
     handle is a sqlite.data.frame object which can be used with the
     most  common operators for data frames.

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

      getSdf(name) 

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

    name: A string containing the internal name of the desired SDF.
          This SDF is attached to the SQLiteDF workspace if it is not
          yet attached.

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

     The SDF must be _registered_ with the SQLiteDF workspace. To get a
     list of registered SDF, use 'lsSdf'.

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

     Returns an sqlite.data.frame object for the SDF with the specified
     internal name.

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

     Miguel A. R. Manese

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

     'sqlite.data.frame' 'lsSdf'

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

         iris.sdf <- sqlite.data.frame(iris)
         iris.sdf.iname <- inameSdf(iris.sdf)
         iris.sdf.too <- getSdf(iris.sdf.iname)

