6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00
firebird-qa/firebird-driver.conf

208 lines
4.3 KiB
Plaintext
Raw Normal View History

2021-04-26 20:02:48 +02:00
[firebird.driver]
;
; Firebird driver configuration.
2021-04-26 20:02:48 +02:00
; Path to Firebird client library
; Type: str
;fb_client_library = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; BLOB size threshold. Bigger BLOB will be returned as stream BLOBs.
; Type: int
;stream_blob_threshold = 65536
2021-04-26 20:02:48 +02:00
; Registered servers
; Type: list of configuration section names
servers = local
2021-04-26 20:02:48 +02:00
; Registered databases
; Type: list of configuration section names
;databases =
2021-04-26 20:02:48 +02:00
[firebird.db.defaults]
;
; Default database configuration.
2021-04-26 20:02:48 +02:00
; Name of server where database is located
; Type: str
;server = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Database connection string
; Type: str
;dsn = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Database file specification or alias
; Type: str
;database = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Database filename should be passed in UTF8
; Type: bool
;utf8filename = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Protocol to be used for database
; Type: enum [xnet, inet, inet4, wnet]
;protocol = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Defaul user name
; Type: str
;user = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Default user password
; Type: str
;password = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Use trusted authentication
; Type: bool
;trusted_auth = no
2021-04-26 20:02:48 +02:00
; User role
; Type: str
;role = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Character set for database connection
; Type: str
;charset = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; SQL Dialect for database connection
; Type: int
;sql_dialect = 3
2021-04-26 20:02:48 +02:00
; Connection timeout
; Type: int
;timeout = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Do not use linger for database connection
; Type: bool
;no_linger = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Page cache size override for database connection
; Type: int
;cache_size = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Dummy packet interval
; Type: int
;dummy_packet_interval = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Configuration override
; Type: str
;config = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; List of authentication plugins override
; Type: str
;auth_plugin_list = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Page size to be used for created database.
; Type: int
;page_size = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Write mode for created database (True = sync, False = async)
; Type: bool
;forced_writes = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Character set for created database
; Type: str
;db_charset = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; SQL dialect for created database
; Type: int
;db_sql_dialect = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Page cache size override for created database
; Type: int
;db_cache_size = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Sweep interval for created database
; Type: int
;sweep_interval = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Data page space usage for created database (True = reserve space, False = Use all space)
; Type: bool
;reserve_space = <UNDEFINED>
2021-04-26 20:02:48 +02:00
[firebird.server.defaults]
;
; Default server configuration.
2021-04-26 20:02:48 +02:00
; Server host machine specification
; Type: str
;host = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Port used by Firebird server
; Type: str
;port = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Defaul user name
; Type: str
user = SYSDBA
2021-04-26 20:02:48 +02:00
; Default user password
; Type: str
password = masterkey
2021-04-26 20:02:48 +02:00
; Configuration override
; Type: str
;config = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; List of authentication plugins override
; Type: str
;auth_plugin_list = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Use trusted authentication
; Type: bool
;trusted_auth = no
2021-04-26 20:02:48 +02:00
[local]
;
; Server configuration.
2021-04-26 20:02:48 +02:00
; Server host machine specification
; Type: str
host = localhost
2021-04-26 20:02:48 +02:00
; Port used by Firebird server
; Type: str
;port = <UNDEFINED>
2021-04-26 20:02:48 +02:00
; Defaul user name
; Type: str
user = SYSDBA
2021-04-26 20:02:48 +02:00
; Default user password
; Type: str
password = masterkey
2021-12-14 20:50:47 +01:00
; Configuration override
; Type: str
;config = <UNDEFINED>
2022-10-04 17:03:12 +02:00
; List of authentication plugins override
; Type: str
;auth_plugin_list = <UNDEFINED>
; Use trusted authentication
; Type: bool
;trusted_auth = no
; #############################################################################
; Hereafter specific servers and their port plus fb_client_library must be specified.
2022-10-04 17:03:12 +02:00
; NB: fb_client_library is part of DriverConfig and not server or database conf
; Explanation see in:
; 1. Letter from pcisar 28-dec-2021 15:14, subj: "firebird-driver-version"
; 2. Letter from pcisar 07-mar-2022 21:30, subj: "firebird-qa [new framework]: unable to make connection as NON-ASCII user ..."
; Parameter 'servers' in the [firebird.driver] section must be "contcatenated" with sections that ape specified below, i.e.:
; servers = local,fb3x,fb4x
;
; [fb3x]
; port = 33300
; fb_client_library = C:\FB\fb3x\fbclient.dll ; (for WINDOWS)
; fb_client_library = /opt/fb30/lib/libfbclient.so ; (for LINUX)
;
; [fb4x]
; port = 33400
; fb_client_library = C:\FB\fb4x\fbclient.dll ; (for WINDOWS)
; fb_client_library = /opt/fb40/lib/libfbclient.so ; (for LINUX)
2022-12-08 15:51:01 +01:00
;[qa_rundaily_fb30]
; port = 33999
; fb_client_library = D:\FB\rundaily-2022\unpacked-snapshot.tmp\fbclient.dll