diff --git a/.gitignore b/.gitignore index 9f1a62a..b8078c0 100644 --- a/.gitignore +++ b/.gitignore @@ -182,3 +182,4 @@ docs/_config.yml# Byte-compiled / optimized / DLL files # Test files for new functionality test-notebook.ipynb test.py +testing.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e92ba9f..f37dba5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "python_tabular" -version = "0.5.4" +version = "0.5.5" authors = [ { name="Curtis Stallings", email="curtisrstallings@gmail.com" }, ] diff --git a/pytabular/dll/Microsoft.AnalysisServices.AdomdClient.dll b/pytabular/dll/Microsoft.AnalysisServices.AdomdClient.dll index cde0bb5..3d1f52d 100644 Binary files a/pytabular/dll/Microsoft.AnalysisServices.AdomdClient.dll and b/pytabular/dll/Microsoft.AnalysisServices.AdomdClient.dll differ diff --git a/pytabular/dll/Microsoft.AnalysisServices.Core.dll b/pytabular/dll/Microsoft.AnalysisServices.Core.dll index b8bc403..2b7f85a 100644 Binary files a/pytabular/dll/Microsoft.AnalysisServices.Core.dll and b/pytabular/dll/Microsoft.AnalysisServices.Core.dll differ diff --git a/pytabular/dll/Microsoft.AnalysisServices.Tabular.Json.dll b/pytabular/dll/Microsoft.AnalysisServices.Tabular.Json.dll index 055fc1d..2d28a9a 100644 Binary files a/pytabular/dll/Microsoft.AnalysisServices.Tabular.Json.dll and b/pytabular/dll/Microsoft.AnalysisServices.Tabular.Json.dll differ diff --git a/pytabular/dll/Microsoft.AnalysisServices.Tabular.dll b/pytabular/dll/Microsoft.AnalysisServices.Tabular.dll index 427d733..34cfd39 100644 Binary files a/pytabular/dll/Microsoft.AnalysisServices.Tabular.dll and b/pytabular/dll/Microsoft.AnalysisServices.Tabular.dll differ diff --git a/pytabular/dll/Microsoft.AnalysisServices.dll b/pytabular/dll/Microsoft.AnalysisServices.dll index b3acaf9..285affb 100644 Binary files a/pytabular/dll/Microsoft.AnalysisServices.dll and b/pytabular/dll/Microsoft.AnalysisServices.dll differ diff --git a/pytabular/query.py b/pytabular/query.py index d656738..4d5630a 100644 --- a/pytabular/query.py +++ b/pytabular/query.py @@ -50,9 +50,9 @@ def __init__(self, server, effective_user=None) -> None: connection_string = server.ConnectionString else: connection_string = ( - f"{server.ConnectionString}Password='{server.ConnectionInfo.Password}'" + f"{server.ConnectionString};Password='{server.ConnectionInfo.Password}'" ) - logger.debug(f"{connection_string}") + logger.debug(f"ADOMD Connection: {connection_string}") if effective_user is not None: connection_string += f";EffectiveUserName={effective_user}" self.ConnectionString = connection_string