Browse Source

* committed patch that improves comments and changes interbase/firebird pwd to the default "masterkey"
Patch from BigChimp, Mantis #20078


git-svn-id: trunk@18873 -

marco 14 years ago
parent
commit
f34a76cc58
1 changed files with 19 additions and 6 deletions
  1. 19 6
      packages/fcl-db/tests/database.ini.txt

+ 19 - 6
packages/fcl-db/tests/database.ini.txt

@@ -1,9 +1,14 @@
-; This file contains several sections, one for each database-type. Select here
-; which section has to be used currently.
+; This file contains several sections, one for each database type. 
+
+; Select here which section has to be used currently, 
+; i.e. which database you want to use
 [Database]
 type=interbase
 
+
 ; These sections are for the several SQLDB-types of databases:
+
+; PostgreSQL database:
 [postgresql]
 
 ; The connector specifies the DB-component that has to be used. The 'sql'
@@ -28,6 +33,7 @@ password=
 ; hostname of the database-server
 hostname=127.0.0.1
 
+; MySQL 4.0 database:
 [mysql40]
 connector=sql
 connectorparams=mysql40
@@ -36,6 +42,7 @@ user=root
 password=
 hostname=127.0.0.1
 
+; MySQL 4.1 database:
 [mysql41]
 connector=sql
 connectorparams=mysql41
@@ -44,6 +51,7 @@ user=root
 password=
 hostname=127.0.0.1
 
+; MySQL 5.0 database:
 [mysql50]
 connector=sql
 connectorparams=mysql50
@@ -52,6 +60,7 @@ user=root
 password=
 hostname=127.0.0.1
 
+; Oracle database:
 [oracle]
 connector=sql
 connectorparams=oracle
@@ -60,14 +69,18 @@ user=system
 password=
 hostname=127.0.0.1
 
+; Interbase or Firebird database:
 [interbase]
 connector=sql
 connectorparams=interbase
 name=/opt/firebird/data/testdb.fdb
+; Default username/password for Interbase/Firebird
+; is sysdba/masterkey. Change to your situation.
 user=sysdba
-password=
+password=masterkey
 hostname=localhost
 
+; ODBC database:
 [odbc]
 connector=sql
 connectorparams=odbc
@@ -76,19 +89,19 @@ user=root
 password=
 hostname=127.0.0.1
 
+; SQLite database:
 [sqlite]
 connector=sql
 connectorparams=sqlite3
 name=test.db
 
-; This section is for a connector for TDbf:
+; TDBf: DBase/FoxPro database:
 [dbf]
 connector=dbf
 
 ; Give here the path where the *.dbf file can be generated
 name=/tmp
 
-; This section is for a connector for MemDS:
+; MemDS in memory dataset:
 [memds]
 connector=memds
-