database.ini.txt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. ; MySQL 5.1 database:
  50. [mysql51]
  51. connector=sql
  52. connectorparams=mysql51
  53. name=testdb
  54. user=root
  55. password=
  56. hostname=127.0.0.1
  57. ; MySQL 5.5 database:
  58. [mysql55]
  59. connector=sql
  60. connectorparams=mysql55
  61. name=testdb
  62. user=root
  63. password=
  64. hostname=127.0.0.1
  65. ; Oracle database:
  66. [oracle]
  67. connector=sql
  68. connectorparams=oracle
  69. name=xe
  70. user=system
  71. password=
  72. hostname=127.0.0.1
  73. ; Interbase or Firebird database:
  74. [interbase]
  75. connector=sql
  76. connectorparams=interbase
  77. name=/opt/firebird/data/testdb.fdb
  78. ; Default username/password for Interbase/Firebird
  79. ; is sysdba/masterkey. Change to your situation.
  80. user=sysdba
  81. password=masterkey
  82. hostname=localhost
  83. ; Firebird embedded
  84. ; Same as Firebird, except we leave the host name blank
  85. ; and specify a db without path.
  86. ; Make sure your Firebird embedded library files (.dll/.so/.dylib)
  87. ; are installed; e.g. on Windows, you can put them in this
  88. ; directory.
  89. ; Test code will create db if it doesn't exist; you can
  90. ; delete an existing db file before the test to start
  91. ; fresh.
  92. [firebirdembedded]
  93. connector=sql
  94. connectorparams=interbase
  95. name=fbembedtest.fdb
  96. user=sysdba
  97. password=masterkey
  98. hostname=
  99. ; ODBC database:
  100. [odbc]
  101. connector=sql
  102. connectorparams=odbc
  103. name=testdb
  104. user=root
  105. password=
  106. hostname=127.0.0.1
  107. ; SQLite database:
  108. [sqlite]
  109. connector=sql
  110. connectorparams=sqlite3
  111. name=test.db
  112. ; MS SQL Server database:
  113. [mssql]
  114. connector=sql
  115. connectorparams=mssql
  116. name=pubs
  117. ; If you want to use trusted authentication/SSPI, leave
  118. ; user and password blank
  119. user=sa
  120. password=
  121. ; You can specify the port after a colon, e.g.
  122. ; hostname=mssqlserver:1433
  123. ; You can also specify the instance after a backslash, e.g.
  124. ; hostname=127.0.0.1\SQLEXPRESS
  125. ; See mssqlconn documentation
  126. hostname=127.0.0.1
  127. ; Sybase ASE database
  128. [sybase]
  129. connector=sql
  130. connectorparams=sybase
  131. name=testdb
  132. user=sa
  133. password=
  134. ; You can specify the port after a colon, e.g.
  135. ; hostname=bigbadserver:5000
  136. ; See mssqlconn documentation
  137. hostname=127.0.0.1
  138. ; TDBf: DBase/FoxPro database:
  139. [dbf]
  140. connector=dbf
  141. ; Give here the path where the *.dbf file can be generated
  142. name=/tmp
  143. ; MemDS in memory dataset:
  144. [memds]
  145. connector=memds
  146. ; BufDataset in memory dataset:
  147. [bufdataset]
  148. connector=bufdataset
  149. ; sdfdataset file-based dataset:
  150. [sdfdataset]
  151. connector=sdfds
  152. ; subdirectory for the sdf files:
  153. name=sdftest