dbGetQuery               package:Rdbi               R Documentation

_S_u_b_m_i_t _a _q_u_e_r_y _s_t_r_i_n_g _a_n_d _f_e_t_c_h _r_e_s_u_l_t_s

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

     'dbGetQuery' is a generic function that, when called on a valid
     connection object, executes a query and returns a dataframe with
     the query results, or an error if no results were generated.

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

     dbGetQuery(conn, ...)

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

    conn: A database connection object

     ...: Arguments that when pasted together form a query string

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

     Simply calls 'dbSendQuery' and 'dbGetResult'.

_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:

     'dbConnect', 'dbGetResult', methods, 'class', 'paste'

