ossdbtoolsservice/capabilities/connection_options/mysql_connection_options.py [17:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_SERVER_NAME,
        is_identity=True,
        is_required=True,
        group_name='Source'
    ),
    ConnectionOption(
        name='dbname',
        display_name='Database name',
        description='The name of the initial catalog or database in the data source',
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_DATABASE_NAME,
        is_identity=True,
        is_required=False,
        group_name='Source',
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ossdbtoolsservice/capabilities/connection_options/pg_connection_options.py [18:32]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_SERVER_NAME,
        is_identity=True,
        is_required=True,
        group_name='Source'
    ),
    ConnectionOption(
        name='dbname',
        display_name='Database name',
        description='The name of the initial catalog or database in the data source',
        value_type=ConnectionOption.VALUE_TYPE_STRING,
        special_value_type=ConnectionOption.SPECIAL_VALUE_DATABASE_NAME,
        is_identity=True,
        is_required=False,
        group_name='Source',
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



