mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-14 22:42:11 +01:00
40 lines
875 B
INI
40 lines
875 B
INI
[Database]
|
|
|
|
# type
|
|
# gives the type of the database-engine. Valid values are:
|
|
# * interbase
|
|
# * mysql40
|
|
# * mysql41
|
|
# * mysql50
|
|
# * odbc
|
|
# * postgresql
|
|
# * dbf
|
|
|
|
type=dbf
|
|
|
|
# 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=/tmp
|
|
|
|
# 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=sysdba
|
|
|
|
# password
|
|
# password is the password of the provided user. If the password is incorrect,
|
|
# all or one of the test could fail.
|
|
|
|
#password=
|
|
|
|
#hostname=192.168.3.25
|
|
|