blob: 5dd08abb23d2195c58ad9b2cb4d3e4035294eb24 [file] [log] [blame]
Andrey Andreev79980e42012-11-25 16:32:05 +02001<?php
2
3return array(
4
5 // Typical Database configuration
6 'mysqli' => array(
7 'dsn' => '',
8 'hostname' => 'localhost',
9 'username' => 'travis',
10 'password' => '',
11 'database' => 'ci_test',
12 'dbdriver' => 'mysqli'
13 ),
14
15 // Database configuration with failover
16 'mysqli_failover' => array(
17 'dsn' => '',
18 'hostname' => 'localhost',
19 'username' => 'not_travis',
20 'password' => 'wrong password',
21 'database' => 'not_ci_test',
22 'dbdriver' => 'mysqli',
23 'failover' => array(
24 array(
25 'dsn' => '',
26 'hostname' => 'localhost',
27 'username' => 'travis',
28 'password' => '',
29 'database' => 'ci_test',
30 'dbdriver' => 'mysqli',
31 )
32 )
33 )
34);