blob: c6827b41c54e203218d17f0ec6036125b501b792 [file] [log] [blame]
Taufan Aditya44015c82012-04-04 19:38:16 +07001<?php
2
3return array(
4
5 // Typical Database configuration
6 'pdo/sqlite' => array(
7 'dsn' => 'sqlite:/'.realpath(__DIR__.'/..').'/ci_test.sqlite',
8 'dbdriver' => 'pdo',
9 ),
10
11 // Database configuration with failover
12 'pdo/sqlite_failover' => array(
13 'dsn' => 'sqlite:/'.realpath(__DIR__.'/..').'/not_exists.sqlite',
14 'dbdriver' => 'pdo',
15 'failover' => array(
16 array(
17 'dsn' => 'sqlite:/'.realpath(__DIR__.'/..').'/ci_test.sqlite',
18 'dbdriver' => 'pdo',
19 ),
20 ),
21 ),
22);