ODBC Installation and Validation on UNIX® Systems
The following sections provide detailed information about ODBC installation and validation on UNIX® and related operating systems:
-
Performing a Stand-alone Installation — installing the InterSystems ODBC client driver and supported driver manager on UNIX®.
-
InterSystems ODBC Client Files — specific file names of some of important installed components.
-
SQL Gateway Drivers for UNIX® and Related Platforms — describes libraries required to run the SQL Gateway with third party drivers.
-
Custom Installation and Configuration for iODBC — installing and configuring the iODBC driver manager, and configuring PHP for iODBC.
-
Troubleshooting for Shared Object Dependencies — how to validate dependencies on shared objects.
Performing a Stand-alone Installation
By default, a full ODBC installation is performed with a standard InterSystems installation. If you perform a custom installation (as described in the Installation Guide), you can select the “SQL client only” option to install only the client access components (ODBC client driver).
In addition, however, a stand-alone installer is provided for InterSystems ODBC. To use this installer:
-
Create the directory where you wish to install the client, such as /usr/irisodbc/.
-
Copy the appropriate zipped tar file into the directory that you just created.
The ./dist/ODBC/ directory contains zipped tar files with names like the following:
ODBC-release-code-platform.tar.gz
where release-code is a release-specific code (that varies among InterSystems versions and releases) and platform specifies the operating system that the ODBC client runs on.
-
Go to the directory you created and manually unpack the .tar file, as follows:
# gunzip ODBC-release-code-platform.tar.gz # tar xvf ODBC-release-code-platform.tar
This creates bin and dev directories and installs a set of files.
-
Run the ODBCInstall program, which will be in the directory that you created. This program creates several sample scripts and configures irisodbc.ini under the mgr directory. For example:
# pwd /usr/irisodbc # ./ODBCInstall
In some releases, the ./dist/ODBC/ directory contains the following command to display the platform name that identifies the file you need:
# ./cplatname identify
This command is not present in releases where it is not required.
SQL Gateway Drivers for UNIX® and Related Platforms
UNIX ODBC drivers are compiled against a specific driver manager (iODBC or unixODBC). For example, the InterSystems ODBC driver comes in versions for each driver manager (see InterSystems ODBC Client Files). These drivers require support libraries that are linked against the same driver manager. InterSystems supplies several odbcgateway libraries that are suitable for different third party drivers. The <install-dir>/bin/ directory contains the following versions of the shared objects used by the InterSystems SQL Gateway. This enables you to connect from InterSystems IRIS to other ODBC client drivers. These files are not installed by default if you perform a stand-alone ODBC installation.
linked against iODBC driver manager
-
odbcgateway.so — supports 8-bit ODBC
-
odbcgatewayiw.so — supports Unicode ODBC.
linked against unixODBC driver manager
-
odbcgatewayu.so — supports 8-bit ODBC.
-
odbcgatewayur64.so — supports 8-bit ODBC for 64-bit unixODBC
If you are installing a third party database driver compiled with unixODBC support (for example, the MS SQL Server ODBC driver), you must back up odbcgateway.so and rename odbcgatewayur64.so to odbcgateway.so.
For more information, see “Using an InterSystems Database as an ODBC Data Source on UNIX®”.
When using third-party shared libraries on a UNIX® system, LD_LIBRARY_PATH must be defined by setting the InterSystems IRIS LibPath parameter (see “LibPath” in the Configuration Parameter File Reference). This is a security measure to prevent unprivileged users from changing the path.
InterSystems ODBC Client Files
Depending on your configuration needs, it may be useful to know the specific file names of some of the installed components. In the following lists, install-dir is the InterSystems installation directory (the path that $SYSTEM.Util.InstallDirectory() returns on your system).
The install-dir/bin/ directory contains the following driver managers:
-
libiodbc.so — The iODBC driver manager, which supports both 8-bit and Unicode ODBC APIs.
-
libodbc.so — The unixODBC driver manager, for use with the 8-bit ODBC API.
Between releases of the ODBC specification, various data types such as SQLLen and SQLULen changed from being 32-bit values to 64-bit values. While these values have always been 64-bit on iODBC, they have changed from 32-bit to 64-bit on unixODBC. As of unixODBC version 2.2.14, the default build uses 64-bit integer values. InterSystems drivers are available for both 32-bit and 64-bit versions of unixODBC.
InterSystems no longer distributes ODBC 2.5 client drivers, but the ODBC 3.5 versions will convert 3.5 requests to 2.5 automatically. The install-dir/bin/ directory contains the following versions (*.so or *.sl):
-
libirisodbc35 — supports 8-bit ODBC 3.5
-
libirisodbciw35 — supports Unicode ODBC 3.5
-
libirisodbciw.dylib — supports Unicode ODBC for MAC OS
-
libirisodbcu35 — supports 8-bit ODBC 3.5
-
libirisodbcur6435 — supports 8-bit ODBC 3.5 for 64-bit unixODBC
Custom Installation and Configuration for iODBC
If you want to build your own iODBC driver manager to operate under custom conditions, you can do so. The iODBC executable and include files are in the directory install-dir/dev/odbc/redist/iodbc/. You need to set LD_LIBRARY_PATH (LIBPATH on AIX®) and the include path in order to use these directories to build your applications.
If you want to customize the iODBC driver manager, you can also do that. Download the source from the iODBC Web site (www.iodbc.orgOpens in a new tab) and follow the instructions.
Configuring PHP with iODBC
You can use InterSystems ODBC functionality in conjunction with PHP, a scripting language that allows developers to create dynamically generated pages. The process is as follows:
-
Get or have root privileges on the machine where you are performing the installation.
-
Install the iODBC driver manager. To do this:
-
Download the kit.
-
Perform a standard installation and configuration.
-
Configure the driver manager for use with PHP as described in the iODBC+PHP HOWTOOpens in a new tab document on the iODBC web site (www.iodbc.orgOpens in a new tab).
Note that LD_LIBRARY_PATH (LIBPATH on AIX®) in the iODBC PHP example does not get set, due to security protections in the default PHP configuration. Also, copy libiodbc.so to /usr/lib and run ldconfig to register it without using LD_LIBRARY_PATH.
-
-
Download the PHP source kit from https://www.php.netOpens in a new tab and un-tar it.
-
Download the Apache HTTP server source kit from http://httpd.apache.org/Opens in a new tab and un-tar it.
-
Build PHP and install it.
-
Build the Apache HTTP server, install it, and start it.
-
Test PHP and the Web server using info.php in the Apache root directory, as specified in the Apache configuration file (often httpd.conf). The URL for this is http://127.0.0.1/info.php.
-
Copy the InterSystems-specific initialization file, irisodbc.ini to /etc/odbc.ini because this location functions better with the Apache Web server if the $HOME environment variable is not defined.
-
Configure and test the libirisodbc.so client driver file.
-
Copy the custom.php file (listed below) to the Apache root directory (the directory where info.php is located), and tailor it to your machine for the location of your InterSystems installation directory.
-
Download and install the sample.person database from https://github.com/intersystems/Samples-DataOpens in a new tab, or modify custom.php to use your preferred sample database.
-
You can then run the custom.php program by pointing your browser to http://127.0.0.1/custom.php
<?php
putenv("LD_LIBRARY_PATH=/usr/local/lib"); //This may be blocked by php security
echo $LD_LIBRARY_PATH;
//putenv("ODBCINSTINI=/path/to/odbcinst.ini"); //this location will be determined by your driver install.
//putenv("ODBCINI=/path/to/odbc.ini"); //odbc.ini contains your DSNs, location determined by your driver install.
$dsn="SAMPLES";
$user="_SYSTEM";
$password="sys";
$sql="SELECT * FROM sample.person";
if ($conn_id=odbc_connect("$dsn","","")){
echo "connected to DSN: $dsn";
if($result=odbc_do($conn_id, $sql)) {
echo "executing '$sql'";
echo "Results: ";
odbc_result_all($result);
echo "freeing result";
odbc_free_result($result);
}else{
echo "can not execute '$sql' ";
}
echo "closing connection $conn_id";
odbc_close($conn_id);
}else{
echo "can not connect to DSN: $dsn ";
}
?>