<?php
/*
* Configure LQueryBU connections, you can define here or copy from your framework variables.
*
* If you copy, remember tu use GLOBAL array to refer your configuration.
*
*/
$configLQBU['default'] = array(
'persistent' => FALSE,
'engine' => 'mysql',
'user' => 'root',
'pass' => 'root',
'host' => '127.0.0.1',
'port' => '3306',
'socket' => FALSE,
'database' => 'lquerybu',
);
|