<?php
/**
@package Database Abstraction
This package is meant for providing database abstraction layer.
Version 1.0
Copyright (C) 2010 Nitesh Apte < nitesh.apte@gmail.com >
This package is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License or
any later version.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this package. If not, see <http://www.gnu.org/licenses/>.
Suggestion/Critics Invited : nitesh.apte@gmail.com
*/
/**
* Global Default values that to be used throughout the project
*
* @package Database Abstraction
* @author Nitesh Apte
* @copyright 2010 Nitesh Apte
* @version 1.0
* @access public
* @License GPL
*/
/**
* MySQL Connectivity Setting
*/
define('DB_HOST', 'localhost');
define('DB_USER', 'root');
define('DB_PASS', '');
define('DB_NAME', 'dbname');
/**
* Choose Database
*/
define('DB_TYPE', 'MYSQL');
?>
|