Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -182,3 +182,4 @@ docs/_config.yml# Byte-compiled / optimized / DLL files
# Test files for new functionality
test-notebook.ipynb
test.py
testing.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand Down
Binary file modified pytabular/dll/Microsoft.AnalysisServices.AdomdClient.dll
Binary file not shown.
Binary file modified pytabular/dll/Microsoft.AnalysisServices.Core.dll
Binary file not shown.
Binary file modified pytabular/dll/Microsoft.AnalysisServices.Tabular.Json.dll
Binary file not shown.
Binary file modified pytabular/dll/Microsoft.AnalysisServices.Tabular.dll
Binary file not shown.
Binary file modified pytabular/dll/Microsoft.AnalysisServices.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions pytabular/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down