database.ini 875 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [Database]
  2. # type
  3. # gives the type of the database-engine. Valid values are:
  4. # * interbase
  5. # * mysql40
  6. # * mysql41
  7. # * mysql50
  8. # * odbc
  9. # * postgresql
  10. # * dbf
  11. type=dbf
  12. # name
  13. # gives the name of the database that should be used.
  14. # This could be a file-name or an alias, dependent on which database-engine is
  15. # used. More information about how to create a dabatase can be find in the
  16. # documentation of the database-engine.
  17. name=/tmp
  18. # user
  19. # name is the name of a user which must have all rights on the selected
  20. # database. If the user has insufficient rights, all or one of the test could
  21. # fail.
  22. # How to set up users and their rights can be found in the database-engine
  23. # documentation.
  24. #user=sysdba
  25. # password
  26. # password is the password of the provided user. If the password is incorrect,
  27. # all or one of the test could fail.
  28. #password=
  29. #hostname=192.168.3.25