dbGetInfo-methods          package:RSQLite          R Documentation

_D_a_t_a_b_a_s_e _i_n_t_e_r_f_a_c_e _m_e_t_a-_d_a_t_a

_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_b_O_b_j any object that implements some functionality in the
          R/S-Plus interface to databases (a driver, a connection or a
          result set).

     _r_e_s an `SQLiteResult'.

     ... currently not being 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', `dbDriver', `dbConnect', `dbSendQuery', `dbGetQuery',
     `fetch', `dbCommit', `dbGetInfo', `dbListTables', `dbReadTable'.

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

     drv <- dbDriver("SQLite")
     con <- dbConnect(drv)

     dbListTables(con)

     rs <- dbSendQuery(con, query.sql)
     dbGetStatement(rs)
     dbHasCompleted(rs)

     info <- dbGetInfo(rs)
     names(dbGetInfo(drv))  

     # DBIConnection info
     names(dbGetInfo(con))

     # DBIResult info
     names(dbGetInfo(rs)) 

