Advertisement
Guest User

Database.php

a guest
Jun 27th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $active_group = 'default';
  2. $query_builder = TRUE;
  3.  
  4. $db['default'] = array(
  5. 'dsn' => 'pgsql:host=localhost;port=5432;dbname=kalibrasi',
  6. 'hostname' => 'localhost',
  7. 'username' => 'postgres',
  8. 'password' => '123456',
  9. 'database' => 'kalibrasi',
  10. 'dbdriver' => 'pdo',
  11. 'dbprefix' => '',
  12. 'pconnect' => FALSE,
  13. 'db_debug' => (ENVIRONMENT !== 'production'),
  14. 'cache_on' => FALSE,
  15. 'cachedir' => '',
  16. 'char_set' => 'utf8',
  17. 'dbcollat' => 'utf8_general_ci',
  18. 'swap_pre' => '',
  19. 'encrypt' => FALSE,
  20. 'compress' => FALSE,
  21. 'stricton' => FALSE,
  22. 'failover' => array(),
  23. 'save_queries' => TRUE
  24. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement