| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?PHP
- //////////////////////////////////////////////////////////////////////////
- // + $Id$
- // +------------------------------------------------------------------+ //
- // + Cake <https://developers.nextco.com/cake/> + //
- // + Copyright: (c) 2005, Cake Authors/Developers + //
- // +------------------------------------------------------------------+ //
- // + Licensed under The MIT License + //
- //////////////////////////////////////////////////////////////////////////
- /**
- * In this file you set up your database connection details.
- */
- /**
- * Database configuration class.
- * You can specify multiple configurations for production, development and testing.
- */
- class DATABASE_CONFIG {
- function devel () {
- return array(
- 'driver' => 'mysql',
- 'host' => 'localhost',
- 'login' => 'www',
- 'password' => '',
- 'database' => 'project_name'
- );
- }
- function test () {
- return array(
- 'driver' => 'mysql',
- 'host' => 'localhost',
- 'login' => 'www-test',
- 'password' => '',
- 'database' => 'project_name-test'
- );
- }
- }
- ?>
|