dbListTables-methods         package:RSQLite         R Documentation

_L_i_s_t _i_t_e_m_s _f_r_o_m _a_n _S_Q_L_i_t_e _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 `SQLiteDriver'.

     _c_o_n_n an `SQLiteConnection'.

     _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://developer.r-project.org/db>.

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

     `SQLite', `dbGetInfo', `dbColumnInfo', `dbDriver', `dbConnect',
     `dbSendQuery'

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

     drv <- dbDriver("SQLite")
     # after working awhile...
     for(con in dbListConnections(odbc)){
        dbGetStatement(dbListResults(con))
     }

