dbGetResult               package:Rdbi               R Documentation

_F_e_t_c_h _r_e_s_u_l_t_s _f_r_o_m _a _q_u_e_r_y

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

     'dbGetResult' is a generic function that, when called on a result
     object, returns any tuples associated with the object.

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

     dbGetResult(result, as.matrix = FALSE)

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

  result: A query result object.

as.matrix: A boolean to indicate whether the results will be returned
          as a matrix

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

     Fetches the results of a query and returns a dataframe. 
     Non-character types should probably be converted to the
     appropriate numeric or logical type.  A generic type conversion
     interface is still needed.

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

     A dataframe with the results.

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

     Timothy H. Keitt

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://rdbi.sourceforge.net/>

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

     'dbSendQuery', 'data.frame'

