C | |
| connect [Ocamlodbc] | connect base user passwd creates a connection to data source
base, as user user, with password passwd.
|
| connect_driver [Ocamlodbc] | connect_driver conn_string exposes the SQLDriverConnect
function to OCaml (for ODBC v2 or greater under MinGW).
|
D | |
| disconnect [Ocamlodbc] |
Disconnect from a database.
|
E | |
| execute [Ocamlodbc] | execute c q executes query q through connection c and
returns the result as a pair (error_code, recordlist), where a
record is a string option list.
|
| execute_gen [Ocamlodbc] | execute_gen c get_info n_rec q callback executes query q over
the connection c, and invokes callback on successful blocks of
the results (of n_rec records each).
|
| execute_with_info [Ocamlodbc] | execute_with_info c q executes query q through connection c 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.
|
S | |
| string [Ocamlodbc.SQL_column] | |
V | |
| version [Ocamlodbc] |
Version of the library.
|