Ikem

Anchor+SQLite db.php

Mar 27th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. return array(
  4.     'default' => 'sqlite',
  5.     'prefix' => 'anchor_',
  6.     'connections' => array(
  7.         'mysql' => array(
  8.             'driver' => 'mysql',
  9.             'hostname' => '127.0.0.1',
  10.             'port' => 3306,
  11.             'username' => 'anchor',
  12.             'password' => 'anchor',
  13.             'database' => 'anchor',
  14.             'charset' => 'utf8'
  15.         ),
  16.         'sqlite' => array(
  17.             'driver' => 'sqlite',
  18.             'database' => 'db.sqlite',
  19.             'charset' => 'utf8'
  20.         )
  21.     )
  22. );
Add Comment
Please, Sign In to add comment