PHP Classes

File: LQueryBU/database.php

Recommend this page to a friend!
  Classes of Xavier Pérez   LQueryBU   LQueryBU/database.php   Download  
File: LQueryBU/database.php
Role: Configuration script
Content type: text/plain
Description: Database configuration
Class: LQueryBU
SQL and PHP business units
Author: By
Last change:
Date: 14 years ago
Size: 460 bytes
 

Contents

Class file image Download
<?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',
);