db.php 357 B

12345678910111213141516
  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=localhost;dbname=hello_world',
  9. // 'db' and 'host' are required if you use Mysqli driver
  10. 'db' => 'hello_world',
  11. 'host'=>'tfbdata'
  12. )
  13. );