db.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Database Connection
  6. |--------------------------------------------------------------------------
  7. |
  8. | The name of your default database connection.
  9. |
  10. | This connection will be used by default for all database operations
  11. | unless a different connection is specified when performing the operation.
  12. |
  13. */
  14. 'default' => 'sqlite',
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Database Connections
  18. |--------------------------------------------------------------------------
  19. |
  20. | Here you can define all of the databases used by your application.
  21. |
  22. | Supported Drivers: 'mysql', 'pgsql', 'sqlite'.
  23. |
  24. | Note: When using the SQLite driver, the path and "sqlite" extention will
  25. | be added automatically. You only need to specify the database name.
  26. |
  27. */
  28. 'connections' => array(
  29. 'sqlite' => array(
  30. 'driver' => 'sqlite',
  31. 'database' => 'application',
  32. ),
  33. 'mysql' => array(
  34. 'driver' => 'mysql',
  35. 'host' => 'localhost',
  36. 'database' => 'database',
  37. 'username' => 'root',
  38. 'password' => 'password',
  39. 'charset' => 'utf8',
  40. ),
  41. 'pgsql' => array(
  42. 'driver' => 'pgsql',
  43. 'host' => 'localhost',
  44. 'database' => 'database',
  45. 'username' => 'root',
  46. 'password' => 'password',
  47. 'charset' => 'utf8',
  48. ),
  49. ),
  50. );