#include <sys/time.h>#include <oci.h>#include "../../sr_module.h"#include "../../db/db.h"#include "dbase.h"#include "asynch.h"

Go to the source code of this file.
Functions | |
| static int | db_oracle_bind_api (db_func_t *dbb) |
| static void | destroy (void) |
| static int | oracle_mod_init (void) |
Variables | |
| static MODULE_VERSION cmd_export_t | cmds [] |
| struct module_exports | exports |
| static param_export_t | params [] |
| static int db_oracle_bind_api | ( | db_func_t * | dbb | ) | [static] |
Definition at line 96 of file db_oracle.c.
References db_func::close, db_oracle_close(), db_oracle_delete(), db_oracle_free_result(), db_oracle_init(), db_oracle_insert(), db_oracle_query(), db_oracle_raw_query(), db_oracle_update(), db_oracle_use_table(), db_func::delete, db_func::free_result, db_func::init, db_func::insert, NULL, db_func::query, db_func::raw_query, db_func::update, and db_func::use_table.
| static void destroy | ( | void | ) | [static] |
| static int oracle_mod_init | ( | void | ) | [static] |
MODULE_VERSION cmd_export_t cmds[] [static] |
Initial value:
{
{"db_bind_api", (cmd_function)db_oracle_bind_api, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0}
}
Definition at line 46 of file db_oracle.c.
| struct module_exports exports |
Definition at line 62 of file db_oracle.c.
param_export_t params[] [static] |
Initial value:
{
{"timeout", STR_PARAM|USE_FUNC_PARAM, (void*)&set_timeout },
{"reconnect", STR_PARAM|USE_FUNC_PARAM, (void*)&set_reconnect },
{0, 0, 0}
}
Definition at line 55 of file db_oracle.c.
1.5.6