/[openfoncier]/trunk/dyn/database.inc.php
ViewVC logotype

Annotation of /trunk/dyn/database.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 43 - (hide annotations)
Sun Jul 24 20:59:06 2011 UTC (13 years, 6 months ago) by fraynaud
File size: 1295 byte(s)
database compatibilite portable



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     // MySQL
13 fraynaud 31 /*
14 fraynaud 3 $conn[1] = array(
15     "Openmairie foncier MySQL",
16     "mysql",
17     "",
18     "root",
19     "",
20     "",
21     "localhost",
22     "",
23     "",
24     "openfoncier",
25     "AAAA-MM-JJ",
26     "",
27     ""
28     );
29 fraynaud 31 */
30     $conn[1] = array(
31 fraynaud 43 "Openmairie foncier base 2 ",
32 fraynaud 31 "pgsql",
33     "pgsql",
34     "postgres",
35     "postgres",
36     "tcp",
37     "localhost",
38     "5432",
39     "",
40 fraynaud 43 "openfoncier2",
41 fraynaud 31 "AAAA-MM-JJ",
42     "public",
43     ""
44     );
45 fraynaud 43
46 fraynaud 3 $conn[2] = array(
47 fraynaud 43 "Openmairie foncier base 1 ",
48 fraynaud 3 "pgsql",
49     "pgsql",
50     "postgres",
51     "postgres",
52     "tcp",
53     "localhost",
54     "5432",
55     "",
56 fraynaud 43 "openfoncier1",
57 fraynaud 3 "AAAA-MM-JJ",
58     "public",
59     ""
60     );
61 fraynaud 43 // PostGreSQL
62 fraynaud 3 $conn[3] = array(
63 fraynaud 43 "Openmairie foncier base 0",
64 fraynaud 3 "pgsql",
65     "pgsql",
66     "postgres",
67     "postgres",
68     "tcp",
69     "localhost",
70     "5432",
71     "",
72 fraynaud 43 "openfoncier",
73 fraynaud 3 "AAAA-MM-JJ",
74 fraynaud 43 "public",
75 fraynaud 3 ""
76     );
77    
78     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26