dbd::informix::configuration(3)
NAME
DBD::Informix::Configuration - Determining your ESQL/C
Configuration
SYNOPSIS
use DBD::Informix::Configuration;
DESCRIPTION
This module is used by IBM Informix Database Driver for
Perl Version 1.00.PC2 (2002-02-01) in the build and bug
reporting code. You will seldom if ever have cause to use
this module directly.
Using find_informixdir_and_esql
- The function find_informixdir_and_esql returns both the
value of $INFORMIXDIR and the pathname of the ESQL/C com
piler executable (a script on Unix, an executable program
on Windows NT). The parameter should be true if the
search is being done on Windows NT; it is false if it is
being done on a Unix system. - my ($ixd, $esql) = find_informix_dir_and_es
- ql($nt);
- Using get_esqlc_version
- Given the pathname of the ESQL/C compiler, this function
returns the ESQL/C version number as a string (such as
9.21.UC1) and as a pure integer (such as 921).
my ($infversion, $vernum) = &get_esqlc_ver- sion($esqlprog);
AUTHOR
- Jonathan Leffler