<?php
/**
 *
 * Auteurs : Richard DEMONGEOT, Alan GARCIA (Durant le projet de PHP de notre année scolaire
 *                                           2004-2005)
 *
 * Date : 10/02/2005
 *
 * Derniere modification : 15/12/2006
 *
 * Synopsys : Fichier contenant les paramètres
 *            nécéssaires a l'utilisation de la classe
 *            cbd.php (surcouche permettant l'utilisation
 *            de plusieurs types de bases de données
 *            avec un même code)
 *
**/

/*
Ce fichier, tout comme la classe cbd à laquelle il est rataché, est sous licence
GPL V2.
Je vous demanderai toutefois de bien vouloir me faire parvenir (par mail ou par
un autre moyen à votre convenance) les modifications que vous êtes suceptibles
d'y ajouter, ainsi que leurs justification.

--------------------------------------------------------------------------------------

This program 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 2 of the License.

Thanks to send me any change you can wrote to this project and their reasons.

This program 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 program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/


define ("LOGIN""");         /* Login de la base de donnée */
define ("PASSWORD""");      /* Mot de passe de la base de donnée */
define ("DATABASE""");      /* Nom de la base de donnée */
define ("HOTE""localhost"); /* Serveur ou se trouve le SGBD */
define ("PORT""5432");      /* Port d'écoute du SGBD */
define ("TYPE""MYSQL");     /* Type de Base de donnée (supporté actuellement :
                MYSQL
                PostgreSQL
                Oracle */
define ("INCLURE""./mysql.php");
//define ("INCLURE", "./postgres.php");
//define ("INCLURE", "./oracle.php");
                              /* Fichier a inclure */
?>