database.php 370 B

1234567891011121314
  1. <?php
  2. // This is the database connection configuration.
  3. return array(
  4. 'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
  5. // uncomment the following lines to use a MySQL database
  6. /*
  7. 'connectionString' => 'mysql:host=localhost;dbname=testdrive',
  8. 'emulatePrepare' => true,
  9. 'username' => 'root',
  10. 'password' => '',
  11. 'charset' => 'utf8',
  12. */
  13. );