123456789101112131415161718192021222324 |
- <?php
- /*
- *---------------------------------------------------------------
- * Database configuration
- *---------------------------------------------------------------
- */
- return array(
- /*
- * the default database
- */
- 'main' => array(
- // selected database
- 'db' => 'hello_world',
-
- // driver
- 'driver' => 'mysql',
-
- // auth
- 'host' => 'localhost',
- 'user' => 'benchmarkdbuser',
- 'pass' => 'benchmarkdbpass',
- 'charset' => 'utf8'
- ),
- );
|