deleteExperimentFromDB         package:maDB         R Documentation

_D_e_l_e_t_i_n_g _a _e_x_p_e_r_i_m_e_n_t _f_r_o_m _a _d_a_t_a_b_a_s_e.

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

     'deleteExperimentFromDB' this function deletes an experiment that
     was formerly stored into a PostgreSQL database by the
     'publishToDB' function. This function depends on the 'RdbiPgSQL'
     package.

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

     deleteExperimentFromDB(con,exp.title,v=TRUE)

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

     con: A connection object (create it with the dbConnect.PgSQL.conn
          function from the package RdbiPgSQL)

exp.title: The name (title) from the experiment in the database.

       v: If TRUE additional information will be printed to the
          console.

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

     As every function from the 'tkfiDB' and 'maDB' packages that
     writes or updates values in a PostgreSQL database also this
     funciton uses transactions. So if any exception occurrs during the
     call the status before the call will be restored.

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

     Johannes Rainer

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

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

     'publishToDB' 'dbGetExperimentInfo'

