2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-10-09 01:56:21 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
2006-01-20 07:46:14 +00:00
|
|
|
* This is core configuration file.
|
|
|
|
*
|
2005-10-09 01:56:21 +00:00
|
|
|
* Use it to configure core behaviour ofCake.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-20 07:46:14 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-10-09 01:56:21 +00:00
|
|
|
*
|
2006-01-20 07:46:14 +00:00
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-10-09 01:56:21 +00:00
|
|
|
* @package cake
|
2006-02-25 19:20:18 +00:00
|
|
|
* @subpackage cake.app.config
|
2005-10-09 01:56:21 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
2005-06-05 19:42:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* In this file you set up your database connection details.
|
2006-01-20 07:46:14 +00:00
|
|
|
*
|
2005-06-05 23:41:46 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.config
|
2005-06-05 19:42:54 +00:00
|
|
|
*/
|
|
|
|
|
2005-10-24 09:54:24 +00:00
|
|
|
|
2005-06-05 19:42:54 +00:00
|
|
|
/**
|
|
|
|
* Database configuration class.
|
|
|
|
* You can specify multiple configurations for production, development and testing.
|
2005-10-24 09:54:24 +00:00
|
|
|
*
|
|
|
|
* driver =>
|
|
|
|
* mysql, postgres, sqlite, adodb-drivername, pear-drivername
|
|
|
|
*
|
|
|
|
* connect =>
|
|
|
|
* MySQL set the connect to either mysql_pconnect of mysql_connect
|
|
|
|
* PostgreSQL set the connect to either pg_pconnect of pg_connect
|
|
|
|
* SQLite set the connect to sqlite_popen sqlite_open
|
2006-01-20 07:46:14 +00:00
|
|
|
* ADOdb set the connect to one of these
|
2006-02-18 23:42:21 +00:00
|
|
|
* (http://phplens.com/adodb/supported.databases.html) and
|
|
|
|
* append it '|p' for persistent connection. (mssql|p for example, or just mssql for not persistent)
|
2005-10-24 09:54:24 +00:00
|
|
|
*
|
|
|
|
* host =>
|
|
|
|
* the host you connect to the database
|
|
|
|
* MySQL 'localhost' to add a port number use 'localhost:port#'
|
|
|
|
* PostgreSQL 'localhost' to add a port number use 'localhost port=5432'
|
|
|
|
*
|
2005-06-05 19:42:54 +00:00
|
|
|
*/
|
2005-06-23 13:59:02 +00:00
|
|
|
class DATABASE_CONFIG
|
|
|
|
{
|
2006-02-18 23:42:21 +00:00
|
|
|
var $default = array('driver' => 'mysql',
|
2006-03-12 00:11:40 +00:00
|
|
|
'connect' => 'mysql_connect',
|
2005-10-24 09:54:24 +00:00
|
|
|
'host' => 'localhost',
|
|
|
|
'login' => 'user',
|
|
|
|
'password' => 'password',
|
2006-02-03 04:45:08 +00:00
|
|
|
'database' => 'project_name',
|
2006-02-18 23:42:21 +00:00
|
|
|
'prefix' => '');
|
2005-06-05 19:42:54 +00:00
|
|
|
|
2006-02-18 23:42:21 +00:00
|
|
|
var $test = array('driver' => 'mysql',
|
2006-03-12 00:11:40 +00:00
|
|
|
'connect' => 'mysql_connect',
|
2005-10-24 09:54:24 +00:00
|
|
|
'host' => 'localhost',
|
|
|
|
'login' => 'user',
|
|
|
|
'password' => 'password',
|
2006-02-03 04:45:08 +00:00
|
|
|
'database' => 'project_name-test',
|
2006-02-18 23:42:21 +00:00
|
|
|
'prefix' => '');
|
2005-06-05 19:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|