db.php 434 B

12345678910111213141516171819
  1. <?php
  2. return array(
  3. 'default' => array(
  4. 'user'=>'benchmarkdbuser',
  5. 'password' => 'benchmarkdbpass',
  6. 'driver' => 'PDO',
  7. //'Connection' is required if you use the PDO driver
  8. 'connection'=>'mysql:host=tfb-database;dbname=hello_world',
  9. // 'db' and 'host' are required if you use Mysqli driver
  10. 'db' => 'hello_world',
  11. 'host'=>'tfb-database',
  12. 'connectionOptions' => array(
  13. PDO::ATTR_PERSISTENT => true
  14. )
  15. )
  16. );