Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions rdl/data_sources/MsSqlDataSource.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ def __init__(self, connection_string, logger=None):
def can_handle_connection_string(connection_string):
return MsSqlDataSource.__connection_string_regex_match(connection_string) is not None

@staticmethod
def connection_string_prefix():
return 'mssql+pyodbc://'

def get_table_info(self, table_config, last_known_sync_version):
columns_in_database = self.__get_table_columns(table_config)
change_tracking_info = self.__get_change_tracking_info(table_config, last_known_sync_version)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='rdl',
version='0.1.13-beta',
version='0.1.14-beta',
packages=find_packages(),
install_requires=[
'numpy==1.16.2',
Expand Down