load                 package:RSQLite                 R Documentation

_L_o_a_d/_u_n_l_o_a_d _t_h_e _c_l_i_e_n_t _p_a_r_t _o_f _a _d_a_t_a_b_a_s_e _i_n_t_e_r_f_a_c_e

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

     Initialize or free the client-side of an R/S database interface

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

     load(mgr, ...)

     unload(mgr, ...)

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

     mgr: a `dbManager' object, as created through `dbManger' 

    ... : any database-specific parameters. 

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

     NULL

_S_i_d_e _E_f_f_e_c_t_s:

     These functions initialize and release client-part software of the
     RS-DBI implementation.

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

     See the Omega Project for Statistical Computing at <URL:
     http://www.omegahat.org> for more details on the R/S database
     interface.

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

     On database managers:

     `dbManager' `SQLite' `load' `unload'

     On connections, SQL statements and resultSets:

     `dbExecStatement' `dbExec' `fetch' `quickSQL'

     On transaction management:

     `commit' `rollback'

     On meta-data:

     `describe' `getVersion' `getDatabases' `getTables' `getFields'
     `getCurrentDatabase' `getTableIndices' `getException'
     `getStatement' `hasCompleted' `getRowCount' `getAffectedRows'
     `getNullOk' `getInfo'

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

     m <- MySQL()
     ...
     unload(m)

