dbArgsWidget            package:tkWidgets            R Documentation

_F_u_n_c_t_i_o_n _t_o _b_u_i_l_d _a _w_i_d_g_e_t _f_o_r _i_n_p_u_t_i_n_g _d_a_t_a_b_a_s_e _a_r_g_u_m_e_n_t_s

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

     This functions creates a interactive widget to allow users to
     input arguments for database connection for Unix.

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

     dbArgsWidget()

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

     Database arguments include database name, user name, password,
     host name, and table name.

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

     The function returns a list containing the following elements: 

  dbname: a charater string for the name of the database

    host: a character string for the name or IP address of the host
          machine

    user: a character string for the name of the user

password: a character string for the password

tablename: a character string for the name of the database table

_N_o_t_e:

     This function is part of the Bioconductor project at Dana-Farber
     Cancer Institute to provide Bioinformatics functionalities through
     R

_A_u_t_h_o_r(_s):

     Jianhua Zhang

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

     Rdbi

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

     'argsWidget'

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

     if(interactive()){
         test <- dbArgsWidget()
     }

