1 |
fraynaud |
3 |
<?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 |
fraynaud |
231 |
"openFoncier sig externe", |
14 |
fraynaud |
31 |
"pgsql", |
15 |
|
|
"pgsql", |
16 |
fmichon |
220 |
"postgres", // login |
17 |
|
|
"postgres", // mot de passe |
18 |
fraynaud |
31 |
"tcp", |
19 |
|
|
"localhost", |
20 |
|
|
"5432", |
21 |
|
|
"", |
22 |
fmichon |
220 |
"openfoncier", // nom de la base |
23 |
fraynaud |
31 |
"AAAA-MM-JJ", |
24 |
|
|
"public", |
25 |
fraynaud |
3 |
"", |
26 |
fmichon |
220 |
"ldap-default", |
27 |
fraynaud |
3 |
); |
28 |
|
|
|
29 |
fraynaud |
253 |
|
30 |
|
|
|
31 |
fraynaud |
242 |
//$conn[2] = array( |
32 |
|
|
// "Openmairie foncier sig interne", |
33 |
|
|
// "pgsql", |
34 |
|
|
// "pgsql", |
35 |
|
|
// "postgres", |
36 |
|
|
// "postgres", |
37 |
|
|
// "tcp", |
38 |
|
|
// "localhost", |
39 |
|
|
// "5432", |
40 |
|
|
// "", |
41 |
|
|
// "openfoncier2", |
42 |
|
|
// "AAAA-MM-JJ", |
43 |
|
|
// "public", |
44 |
|
|
// "" |
45 |
|
|
//); |
46 |
|
|
|
47 |
fraynaud |
228 |
$conn[2] = array( |
48 |
fraynaud |
242 |
"Openmairie foncier shema sig externe", |
49 |
fraynaud |
228 |
"pgsql", |
50 |
|
|
"pgsql", |
51 |
|
|
"postgres", |
52 |
|
|
"postgres", |
53 |
|
|
"tcp", |
54 |
|
|
"localhost", |
55 |
|
|
"5432", |
56 |
|
|
"", |
57 |
fraynaud |
242 |
"accm", |
58 |
fraynaud |
228 |
"AAAA-MM-JJ", |
59 |
fraynaud |
253 |
"openfoncier1", |
60 |
fraynaud |
228 |
"" |
61 |
|
|
); |
62 |
|
|
|
63 |
fraynaud |
253 |
|
64 |
|
|
|
65 |
fmichon |
220 |
?> |