dbListTables-methods         package:RMySQL         R Documentation

_L_i_s_t _i_t_e_m_s _f_r_o_m _a_n _M_y_S_Q_L _D_B_M_S _a_n_d _f_r_o_m _o_b_j_e_c_t_s

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

     These methods are straight-forward implementations of the
     corresponding generic functions.

_M_e_t_h_o_d_s:

     _d_r_v an 'MySQLDriver'.

     _c_o_n_n an 'MySQLConnection'.

     _n_a_m_e a character string with the table name.

     ... currently not used.

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

     See the Database Interface definition document 'DBI.pdf' in the
     base directory of this package or <URL:
     http://stat.bell-labs.com/RS-DBI>.

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

     'MySQL', 'dbGetInfo', 'dbColumnInfo', 'dbDriver', 'dbConnect',
     'dbSendQuery'

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

     ## Not run: 
     drv <- dbDriver("MySQL")
     # after working awhile...
     for(con in dbListConnections(drv)){
        dbGetStatement(dbListResults(con))
     }
     ## End(Not run)

