database.php 445 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. return array (
  3. 'default' => array (
  4. 'hostname' => '192.168.0.131',
  5. 'database' => 'adicn',
  6. 'username' => 'root',
  7. 'password' => 'adimysql123',
  8. // 'hostname' => '106.3.96.219',
  9. // 'database' => 'adicn',
  10. // 'username' => 'root',
  11. // 'password' => 'xicae@mysql123!',
  12. 'tablepre' => 'v9_',
  13. 'charset' => 'utf8',
  14. 'type' => 'mysql',
  15. 'debug' => true,
  16. 'pconnect' => 0,
  17. 'autoconnect' => 0
  18. ),
  19. );
  20. ?>