This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lndb2/config/database.php
2015-09-30 21:46:03 +10:00

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,
),
);
?>