C | |
connect [Ocamlodbc.data_base] | |
D | |
disconnect [Ocamlodbc.data_base] |
Disconnect from the database.
|
E | |
execute [Ocamlodbc.data_base] | #execute q executes query q and returns the result as a pair
(error_code, recordlist) , where a record is a string
list .
|
execute_gen [Ocamlodbc.data_base] | #execute_gen get_info n_rec q callback executes query q and
invokes callback on successful blocks of the results (of
n_rec records each).
|
execute_with_info [Ocamlodbc.data_base] | #execute_with_info q executes query q and returns the result
as a tuple (error_code, type_list, record list) , where
type_list indicates the SQL types of the returned columns, and
a record is a string list .
|