12345678910111213141516171819202122232425262728293031323334353637 |
- [Database]
- # type
- # gives the type of the database-engine. Valid values are:
- # * interbase
- # * mysql40
- # * mysql41
- # * mysql50
- # * odbc
- # * postgresql
- type=oracle
- # name
- # gives the name of the database that should be used.
- # This could be a file-name or an alias, dependent on which database-engine is
- # used. More information about how to create a dabatase can be find in the
- # documentation of the database-engine.
- name=//192.168.3.1/xe
- # user
- # name is the name of a user which must have all rights on the selected
- # database. If the user has insufficient rights, all or one of the test could
- # fail.
- # How to set up users and their rights can be found in the database-engine
- # documentation.
- user=system
- # password
- # password is the password of the provided user. If the password is incorrect,
- # all or one of the test could fail.
- password=rosivrepus
- hostname=
|