40 lines
1.5 KiB
Python
Raw Normal View History

2021-08-02 15:08:30 +05:30
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2021-08-01 14:27:44 -07:00
# This import verifies that the dependencies are available.
import sqlalchemy_pytds # noqa: F401
2021-08-10 11:28:15 -07:00
from .sql_source import SQLConnectionConfig, SQLSource
2021-08-01 14:27:44 -07:00
from ..ometa.auth_provider import MetadataServerConfig
2021-08-14 00:09:51 +05:30
class MssqlConfig(SQLConnectionConfig):
2021-08-01 14:27:44 -07:00
host_port = "localhost:1433"
scheme = "mssql+pytds"
2021-08-11 23:49:00 +05:30
def get_connection_url(self):
return super().get_connection_url()
2021-08-01 14:27:44 -07:00
2021-08-14 00:09:51 +05:30
class MssqlSource(SQLSource):
2021-08-01 14:27:44 -07:00
def __init__(self, config, metadata_config, ctx):
2021-08-10 11:28:15 -07:00
super().__init__(config, metadata_config, ctx)
2021-08-01 14:27:44 -07:00
@classmethod
def create(cls, config_dict, metadata_config_dict, ctx):
2021-08-14 00:09:51 +05:30
config = MssqlConfig.parse_obj(config_dict)
2021-08-01 14:27:44 -07:00
metadata_config = MetadataServerConfig.parse_obj(metadata_config_dict)
return cls(config, metadata_config, ctx)