- Conexión a BD git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@5 77cfc57b-8ef4-1849-9df6-4a38aa5da120
20 lines
384 B
PHP
20 lines
384 B
PHP
<?php
|
|
|
|
return CMap::mergeArray(
|
|
require(dirname(__FILE__).'/main.php'),
|
|
array(
|
|
'components'=>array(
|
|
'fixture'=>array(
|
|
'class'=>'system.test.CDbFixtureManager',
|
|
),
|
|
'db'=>array(
|
|
'connectionString' => 'mysql:host=localhost;dbname=intranet_test',
|
|
'emulatePrepare' => true,
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'charset' => 'utf8',
|
|
),
|
|
),
|
|
)
|
|
);
|