34 lines
661 B
PHP
34 lines
661 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
// Typical Database configuration
|
|
'mysqli' => array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'travis',
|
|
'password' => '',
|
|
'database' => 'ci_test',
|
|
'dbdriver' => 'mysqli'
|
|
),
|
|
|
|
// Database configuration with failover
|
|
'mysqli_failover' => array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'not_travis',
|
|
'password' => 'wrong password',
|
|
'database' => 'not_ci_test',
|
|
'dbdriver' => 'mysqli',
|
|
'failover' => array(
|
|
array(
|
|
'dsn' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'travis',
|
|
'password' => '',
|
|
'database' => 'ci_test',
|
|
'dbdriver' => 'mysqli',
|
|
)
|
|
)
|
|
)
|
|
); |