Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit b8b4f7d

Browse files
authored
Merge pull request #57 from pageuppeople-opensource/fix/undelete-used-code
Fix - undelete used code and make another release
2 parents bf8b2d7 + 1cad6fb commit b8b4f7d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

rdl/data_sources/MsSqlDataSource.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ def __init__(self, connection_string, logger=None):
3636
def can_handle_connection_string(connection_string):
3737
return MsSqlDataSource.__connection_string_regex_match(connection_string) is not None
3838

39+
@staticmethod
40+
def connection_string_prefix():
41+
return 'mssql+pyodbc://'
42+
3943
def get_table_info(self, table_config, last_known_sync_version):
4044
columns_in_database = self.__get_table_columns(table_config)
4145
change_tracking_info = self.__get_change_tracking_info(table_config, last_known_sync_version)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
setup(name='rdl',
4-
version='0.1.13-beta',
4+
version='0.1.14-beta',
55
packages=find_packages(),
66
install_requires=[
77
'numpy==1.16.2',

0 commit comments

Comments
 (0)