Coverage for mindsdb / integrations / handlers / firebird_handler / connection_args.py: 0%
4 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from collections import OrderedDict
3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE
6connection_args = OrderedDict(
7 host={
8 'type': ARG_TYPE.STR,
9 'description': 'The host name or IP address of the Firebird server.'
10 },
11 database={
12 'type': ARG_TYPE.STR,
13 'description': """
14 The database name to use when connecting with the Firebird server. NOTE: use double backslashes (\\) for the
15 database path on a Windows machine.
16 """
17 },
18 user={
19 'type': ARG_TYPE.STR,
20 'description': 'The user name used to authenticate with the Firebird server.'
21 },
22 password={
23 'type': ARG_TYPE.PWD,
24 'description': 'The password to authenticate the user with the Firebird server.',
25 'secret': True
26 }
27)
29connection_args_example = OrderedDict(
30 host='localhost',
31 database='/temp/test.db',
32 user='sysdba',
33 password='password'
34)