Skip to content

UNIXODBC module

This module allows to use the unixodbc package with OpenSIPS. It have been tested with mysql and the odbc connector, but it should work also with other database. The auth_db module works.

For more information, see the http://www.unixodbc.org/ project web page.

To see what DB engines can be used via unixodbc, look at http://www.unixodbc.org/drivers.html.

The following modules must be loaded before this module:

  • No dependencies on other OpenSIPS modules.

The following libraries or applications must be installed before running OpenSIPS with this module loaded:

  • None.

Turns on or off the auto_reconnect mode.

Default value is “1”, this means it is enabled.

Set the 'auto_reconnect' parameter
...
modparam("db_unixodbc", "auto_reconnect", 0)
...

Escape values in query using internal escape_common() function. It escapes single quote ''', double quote ’”’, backslash ”, and NULL characters.

You should enable this parameter if you know that the ODBC driver considers the above characters as special (for marking begin and end of a value, escape other characters …). It prevents against SQL injection.

Default value is “0” (0 = disabled; 1 = enabled).

Set the 'use_escape_common' parameter
...
modparam("db_unixodbc", "use_escape_common", 1)
...

NONE

Prerequirement: you should first install unixodbc (or another program that implements the odbc standard, such iodbc), your database, and the right connector. Set the DSN in the odbc.ini file and the connector drivers in the odbcinst.ini file.

In the opensips.conf file, add the line:

....
loadmodule "/usr/local/lib/opensips/modules/db_unixodbc.so"
....

You should also uncomment this:

....
loadmodule "/usr/local/lib/opensips/modules/auth.so"
loadmodule "/usr/local/lib/opensips/modules/auth_db.so"
modparam("usrloc", "db_mode", 2)
modparam("auth_db", "calculate_ha1", yes)
modparam("auth_db", "password_column", "password")
....

and setting the DSN specified in the odbc.ini, inserting this with the url adding this line:

....
modparam("usrloc|auth_db", "db_url",
"unixodbc://opensips:opensipsrw@localhost/my_dsn")
....

replacing my_dsn with the correct value.

Terminal window
shell>safe_mysqld --user=mysql --socket=/var/lib/mysql/mysql.sock

The connector search the socket in /var/lib/mysql/mysql.sock and not in /tmp/mysql.sock

The module implements the OpenSIPS DB API, in order to be used by other modules.

Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)

#NameDevScoreCommitsLines++Lines—
1.Henning Westerholt (@henningw)1022426183362
2.Bogdan-Andrei Iancu (@bogdan-iancu)4228657460
3.Marco Lorrai24126600
4.Daniel-Constantin Mierla (@miconda)2015226145
5.Liviu Chircu (@liviuchircu)82110249
6.Stefan Darius (@dariusstefan)7419725
7.Razvan Crainea (@razvancrainea)42343
8.Anca Vamanu4189103
9.Elena-Ramona Modroiu31371
10.Anonymous3154

All remaining contributors: Konstantin Bokarius, Razvan Pistolea, Alex Massover, Norman Brandinger (@NormB), Edson Gellert Schubert, Vlad Paiu (@vladpaiu), Carsten Bock.

(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)

(2) including any documentation-related commits, excluding merge commits

(3) ignoring whitespace edits, renamed files and auto-generated files

#NameCommit Activity
1.Stefan Darius (@dariusstefan)Jun 2026 - Jul 2026
2.Razvan Crainea (@razvancrainea)Oct 2011 - Jun 2026
3.Liviu Chircu (@liviuchircu)May 2014 - Oct 2014
4.Bogdan-Andrei Iancu (@bogdan-iancu)Dec 2005 - Sep 2014
5.Vlad Paiu (@vladpaiu)Jul 2011 - Jul 2011
6.Razvan PistoleaJul 2009 - Jul 2009
7.Alex MassoverMar 2009 - Mar 2009
8.Carsten BockMay 2008 - May 2008
9.Henning Westerholt (@henningw)May 2007 - May 2008
10.Daniel-Constantin Mierla (@miconda)Nov 2006 - Mar 2008

All remaining contributors: Konstantin Bokarius, Edson Gellert Schubert, Anca Vamanu, Elena-Ramona Modroiu, Norman Brandinger (@NormB), Anonymous, Marco Lorrai.

(1) including any documentation-related commits, excluding merge commits

Last edited by: Razvan Crainea (@razvancrainea), Bogdan-Andrei Iancu (@bogdan-iancu), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Henning Westerholt (@henningw), Elena-Ramona Modroiu, Marco Lorrai.

All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0