1 |
<?php |
2 |
/** |
3 |
* Ce fichier permet le parametrage de la connexion a labase de donnees, |
4 |
* chaque entree du tableau correspond a une base differente. Attention |
5 |
* l'index du tableau conn represente l'identifiant du dossier dans lequel |
6 |
* seront stockes les fichiers propres a cette base dans l'application |
7 |
* |
8 |
* @package openmairie_exemple |
9 |
* @version SVN : $Id: database.inc.php 288 2010-12-02 13:52:25Z fmichon $ |
10 |
*/ |
11 |
|
12 |
$conn[1] = array( |
13 |
"openFoncier sig externe", |
14 |
"pgsql", |
15 |
"pgsql", |
16 |
"postgres", // login |
17 |
"postgres", // mot de passe |
18 |
"tcp", |
19 |
"localhost", |
20 |
"5432", |
21 |
"", |
22 |
"openfoncier", // nom de la base |
23 |
"AAAA-MM-JJ", |
24 |
"public", |
25 |
"", |
26 |
"ldap-default", |
27 |
); |
28 |
|
29 |
//$conn[2] = array( |
30 |
// "Openmairie foncier sig interne", |
31 |
// "pgsql", |
32 |
// "pgsql", |
33 |
// "postgres", |
34 |
// "postgres", |
35 |
// "tcp", |
36 |
// "localhost", |
37 |
// "5432", |
38 |
// "", |
39 |
// "openfoncier2", |
40 |
// "AAAA-MM-JJ", |
41 |
// "public", |
42 |
// "" |
43 |
//); |
44 |
|
45 |
$conn[2] = array( |
46 |
"Openmairie foncier shema sig externe", |
47 |
"pgsql", |
48 |
"pgsql", |
49 |
"postgres", |
50 |
"postgres", |
51 |
"tcp", |
52 |
"localhost", |
53 |
"5432", |
54 |
"", |
55 |
"accm", |
56 |
"AAAA-MM-JJ", |
57 |
"openfoncier", |
58 |
"" |
59 |
); |
60 |
|
61 |
?> |