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