35 lines
809 B
PHP
35 lines
809 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
return array
|
|
(
|
|
'db2' => array
|
|
(
|
|
'type' => 'DB2',
|
|
'connection' => array(
|
|
/**
|
|
* The following options are available for DB2:
|
|
*
|
|
* string hostname server hostname, or socket
|
|
* string database database name
|
|
* string username database username
|
|
* string password database password
|
|
* boolean persistent use persistent connections?
|
|
*
|
|
* Ports and sockets may be appended to the hostname.
|
|
*/
|
|
'hostname' => '',
|
|
'port' => '',
|
|
'username' => '',
|
|
'password' => '',
|
|
'persistent' => FALSE,
|
|
'database' => '',
|
|
'schema' => '',
|
|
),
|
|
'table_prefix' => '',
|
|
'charset' => 'utf8',
|
|
'caching' => TRUE,
|
|
'profiling' => TRUE,
|
|
),
|
|
);
|
|
?>
|