inameSdf              package:SQLiteDF              R Documentation

_S_D_F _I_n_t_e_r_n_a_l _N_a_m_e

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

     Get the internal name of an SDF.

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

     inameSdf(sdf)

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

     sdf: a sqlite.data.frame

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

     Internal names are those that are listed in 'lsSdf', not the names
     of the R variables holding a _reference_ to SDFs. There could be
     many R variable that refers to the same SDF (when 'inameSdf(sdf1)
     == inameSdf(sdf2)').

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

     A 2 element string vector with the internal name of the SDF and
     the SQLite database file name where it is stored.

_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.sdf1 <- sqlite.data.frame(iris)  
     inameSdf(iris.sdf1) # c("data1", "data1.db"), or generally data<n>
     iris.sdf2 <- sqlite.data.frame(iris, "iris")
     inameSdf(iris.sdf2) # c("iris", "iris.db"), or if it already exists, iris<n>

