123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- [Database]
- ; This file contains several sections, one for each database-type. Select here
- ; which database has to be tested currently.
- type=interbase
- ; These sections are for the several SQLDB-types of databases:
- [postgresql]
- ; The connector specifies the connector that has to be used. The 'sql' connector
- ; tests the TSQLQuery component
- connector=sql
- ; Here you can give some parameters, which are specific for each connector. The
- ; SQL connector uses this parameter to specify the connection that should be
- ; used;
- connectorparams=postgresql
- ; The name of the database. The database could be empty. You only need read and
- ; write rights.
- name=testdb
- ; user to log in with
- user=
- ; password to log in with
- password=
- ; hostname of the database-server
- hostname=192.168.3.25
- [mysql40]
- connector=sql
- connectorparams=mysql40
- name=cnoc02
- user=root
- password=rosivrepus
- hostname=192.168.3.1
- [mysql41]
- connector=sql
- connectorparams=mysql41
- name=testdb
- user=root
- password=apassword
- hostname=192.168.1.1
- [mysql50]
- connector=sql
- connectorparams=mysql50
- name=testdb
- user=root
- password=apassword
- hostname=192.168.1.1
- [oracle]
- connector=sql
- connectorparams=oracle
- name=xe
- user=system
- password=rosivrepus
- hostname=192.168.3.1
- [interbase]
- connector=sql
- connectorparams=interbase
- name=/opt/firebird/data/testdb.fdb
- user=sysdba
- password=rosivrepus
- hostname=localhost
- [odbc]
- connector=sql
- connectorparams=odbc
- name=testdb
- user=root
- password=apassword
- hostname=192.168.1.1
- ; This section is for TDbf:
- [dbf]
- connector=dbf
- ; Give here the path where the *.dbf file can be generated
- name=/tmp
- ; This section is for MemDS:
- [memds]
- connector=memds
|