Table of Contents
List of Examples
Table of Contents
This is a module which provides Oracle connectivity for Kamailio. It implements the DB API defined in Kamailio. If you want to use the nathelper module, or any other modules that calls the get_all_ucontacts API export from usrloc, then you need to set the DORACLE_USRLOC define in the Makefile.defs file before compilation.
The following modules must be loaded before this module:
No dependencies on other Kamailio modules.
Timeout value for any operation with BD.
Possible values is from 0.1 to 10.0 seconds.
Default value is 3.0 (3 second).
If value of timeout parameter set to 0, module use synchronous mode (without timeout).
Because it depends on an external library, the oracle module is not compiled and installed by default. You can use one of the next options.
- edit the "Makefile" and remove "db_oracle" from "excluded_modules" list. Then follow the standard procedure to install Kamailio: "make all; make install".
- from command line use: 'make all include_modules="db_oracle"; make install include_modules="db_oracle"'.
For working with kamctl script, should be able to print the 'query' results to the terminal in a user-readable form. The standard command-line Oracle client (sqlplus) is not quite suitable for this, as it cannot align row width to real (received) data's (it always prints a cell width as described in the db scheme). This problem has been solved by inclusion the utility kamailio_oracle, which formats printing approximately in the same way as the 'mysql' client utility. In addition, this utility known about the "agreements and types" in DB that are used in Kamailio for the work with Oracle and formats printing taking these into account.