typeSvec              package:SQLiteDF              R Documentation

_G_e_t _T_y_p_e _o_f _s_q_l_i_t_e._v_e_c_t_o_r

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

     Returns the _class_ of an sqlite.vector if it were

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

     typeSvec(x)
     has.typeSvec(x, type)

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

       x: an sqlite.vector

    type: a string containing the class name, like numeric, factor,
          character

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

typeSvec: returns a string with the class name of the argument

has.typeSvec: returns TRUE if x is a sqlite.vector and has type as
          returned by typeSvec

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

     Miguel A. R. Manese

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

         iris.sdf <- sqlite.data.frame(iris)
         typeSvec(iris.sdf[,1])   # numeric
         has.typeSvec(iris.sdf[,1], "numeric")  # TRUE

