database.ini.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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=interbase
  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. ; ODBC database:
  68. [odbc]
  69. connector=sql
  70. connectorparams=odbc
  71. name=testdb
  72. user=root
  73. password=
  74. hostname=127.0.0.1
  75. ; SQLite database:
  76. [sqlite]
  77. connector=sql
  78. connectorparams=sqlite3
  79. name=test.db
  80. ; MS SQL Server database:
  81. [mssql]
  82. connector=sql
  83. connectorparams=mssql
  84. name=pubs
  85. user=sa
  86. password=
  87. hostname=127.0.0.1
  88. ; TDBf: DBase/FoxPro database:
  89. [dbf]
  90. connector=dbf
  91. ; Give here the path where the *.dbf file can be generated
  92. name=/tmp
  93. ; MemDS in memory dataset:
  94. [memds]
  95. connector=memds
  96. ; BufDataset in memory dataset:
  97. [bufdataset]
  98. connector=bufdataset