blob: c06af8ce09029911d464f2e1eb5fd7e07d477a43 [file] [log] [blame]
Taufan Adityaee2f5d02012-03-30 06:29:11 +07001<?php
2
3return array(
4
5 // Typical Database configuration
6 'pgsql' => array(
7 'dsn' => '',
8 'hostname' => 'localhost',
9 'username' => 'postgres',
10 'password' => '',
11 'database' => 'ci_test',
12 'dbdriver' => 'postgre',
13 ),
14
15 // Database configuration with failover
16 'pgsql_failover' => array(
17 'dsn' => '',
18 'hostname' => 'localhost',
19 'username' => 'not_travis',
20 'password' => 'wrong password',
21 'database' => 'not_ci_test',
22 'dbdriver' => 'postgre',
23 'failover' => array(
24 array(
25 'dsn' => '',
26 'hostname' => 'localhost',
27 'username' => 'postgres',
28 'password' => '',
29 'database' => 'ci_test',
30 'dbdriver' => 'postgre',
31 ),
32 ),
33 ),
34);