database.php 364 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php

// This is the database connection configuration.
return array(
	//'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
	// uncomment the following lines to use a MySQL database
	'connectionString' => 'mysql:host=localhost;dbname=sirep_app',
	'emulatePrepare' => true,
JULIO JARAMILLO's avatar
JULIO JARAMILLO committed
9 10
	'username' => 'root',
	'password' => '',
11 12
	'charset' => 'utf8',
);