Table 4.1. Configuration: Database Section
Variable | Description | Typical Value |
---|---|---|
dbienvvar |
Commerical databases such as Oracle 10g usually require the presence of an environment variable to tell their libraries where to find configuration information, libraries, etc. This is the name of that variable; the companion attribute, dbienvvalue, is what value that variable should have. | ORACLE_HOME |
dbienvvalue | The value that dbienvvar should be set to; typically the location of the installed database library and configuration files for the database. | /usr/local/oracle/V10.1.0 |
dbiconnect | This is the connect string that needs to be passed to the perl
DBI routines to specify the database type and instance to be connected to.
For Oracle it'll be something like | dbi:Oracle:orasrv |
phpdbconnect | This is the connect string that needs to be passed to the PHP DB
routines (php5) to specify the database type and instance to be connected
to. For Oracle it'll be something like
|
mysql://wacs:wacs@mysqlhost/wacs |
dateformat | This is the format of date used by the underlying database -
initially
this will be either | YYYY-MM-DD |
dbuser | The username to log into the database with. | wacs |
dbpass | The password to use in conjuction with the account name given in given in dbuser above to log into the database with. | wacs |