Coverage for mindsdb / integrations / handlers / monetdb_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 host={ 

8 "type": ARG_TYPE.STR, 

9 "description": "The host name or IP address of the MonetDB server/database.", 

10 }, 

11 database={ 

12 "type": ARG_TYPE.STR, 

13 "description": """ 

14 The database name to use when connecting with the MonetDB server. 

15 """, 

16 }, 

17 user={ 

18 "type": ARG_TYPE.STR, 

19 "description": "The user name used to authenticate with the MonetDB server.", 

20 }, 

21 password={ 

22 "type": ARG_TYPE.PWD, 

23 "description": "The password to authenticate the user with the MonetDB server.", 

24 "secret": True, 

25 }, 

26 port={ 

27 "type": ARG_TYPE.INT, 

28 "description": "Specify port to connect MonetDB through TCP/IP", 

29 }, 

30 schema_name={ 

31 "type": ARG_TYPE.STR, 

32 "description": "Specify the schema name for Listing Table ", 

33 }, 

34) 

35 

36connection_args_example = OrderedDict( 

37 host="127.0.0.1", 

38 port=50000, 

39 password="monetdb", 

40 user="monetdb", 

41 schemaName="sys", 

42 database="demo", 

43)