database.ini.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. ; This file contains several sections, one for each database type.
  2. ; Select here which section has to be used currently,
  3. ; i.e. which database you want to use
  4. [Database]
  5. type=bufdataset
  6. ; These sections are for the several SQLDB-types of databases:
  7. ; PostgreSQL database:
  8. [postgresql]
  9. ; The connector specifies the DB-component that has to be used. The 'sql'
  10. ; connector tests the SQLDB components
  11. connector=sql
  12. ; Here you can give some parameters, which are specific for each connector. The
  13. ; SQL connector uses this parameter to specify the connection that should be
  14. ; used;
  15. connectorparams=postgresql
  16. ; The name of the database. The database could be empty. You only need read and
  17. ; write rights.
  18. name=testdb
  19. ; user to log in with
  20. user=
  21. ; password to log in with
  22. password=
  23. ; hostname of the database-server
  24. hostname=127.0.0.1
  25. ; MySQL 4.0 database:
  26. [mysql40]
  27. connector=sql
  28. connectorparams=mysql40
  29. name=testdb
  30. user=root
  31. password=
  32. hostname=127.0.0.1
  33. ; MySQL 4.1 database:
  34. [mysql41]
  35. connector=sql
  36. connectorparams=mysql41
  37. name=testdb
  38. user=root
  39. password=
  40. hostname=127.0.0.1
  41. ; MySQL 5.0 database:
  42. [mysql50]
  43. connector=sql
  44. connectorparams=mysql50
  45. name=testdb
  46. user=root
  47. password=
  48. hostname=127.0.0.1
  49. ; Oracle database:
  50. [oracle]
  51. connector=sql
  52. connectorparams=oracle
  53. name=xe
  54. user=system
  55. password=
  56. hostname=127.0.0.1
  57. ; Interbase or Firebird database:
  58. [interbase]
  59. connector=sql
  60. connectorparams=interbase
  61. name=/opt/firebird/data/testdb.fdb
  62. ; Default username/password for Interbase/Firebird
  63. ; is sysdba/masterkey. Change to your situation.
  64. user=sysdba
  65. password=masterkey
  66. hostname=localhost
  67. ; Firebird embedded
  68. ; Same as Firebird, except we leave the host name blank
  69. ; and specify a db without path.
  70. ; Make sure your Firebird embedded library files (.dll/.so/.dylib)
  71. ; are installed; e.g. on Windows, you can put them in this
  72. ; directory.
  73. ; Test code will create db if it doesn't exist; you can
  74. ; delete an existing db file before the test to start
  75. ; fresh.
  76. [firebirdembedded]
  77. connector=sql
  78. connectorparams=interbase
  79. name=fbembedtest.fdb
  80. user=sysdba
  81. password=masterkey
  82. hostname=
  83. ; ODBC database:
  84. [odbc]
  85. connector=sql
  86. connectorparams=odbc
  87. name=testdb
  88. user=root
  89. password=
  90. hostname=127.0.0.1
  91. ; SQLite database:
  92. [sqlite]
  93. connector=sql
  94. connectorparams=sqlite3
  95. name=test.db
  96. ; MS SQL Server database:
  97. [mssql]
  98. connector=sql
  99. connectorparams=mssql
  100. name=pubs
  101. ; If you want to use trusted authentication/SSPI, leave
  102. ; user and password blank
  103. user=sa
  104. password=
  105. hostname=127.0.0.1
  106. ; Sybase ASE database
  107. [sybase]
  108. connector=sql
  109. connectorparams=sybase
  110. name=testdb
  111. usser=sa
  112. password=
  113. hostname=127.0.0.1
  114. ; TDBf: DBase/FoxPro database:
  115. [dbf]
  116. connector=dbf
  117. ; Give here the path where the *.dbf file can be generated
  118. name=/tmp
  119. ; MemDS in memory dataset:
  120. [memds]
  121. connector=memds
  122. ; BufDataset in memory dataset:
  123. [bufdataset]
  124. connector=bufdataset
  125. ; sdfdataset file-based dataset:
  126. [sdfdataset]
  127. connector=sdfds
  128. ; subdirectory for the sdf files:
  129. name=sdftest