You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When passing odbc_kwargs["encrypt"]="no" to bcpandas.sqlCreds, it is appended to the connect string after the password without a separator. Workaround that creates working sqlalchemy engine but does not work with bcp executable: sqlCreds(password=password+";", odbc_kwargs=dict(encrypt="no"))
The text was updated successfully, but these errors were encountered:
windiana42
added a commit
to windiana42/bcpandas
that referenced
this issue
Jun 28, 2023
fixesyehoshuadimarsky#131
Disclaimer:
I currently don't have a test environment that can execute tests with
`@pytest.mark.usefixtures("database")` and thus some failing tests
related to yehoshuadimarsky#131 might not be fixed as claimed by this commit message.
When passing odbc_kwargs["encrypt"]="no" to bcpandas.sqlCreds, it is appended to the connect string after the password without a separator. Workaround that creates working sqlalchemy engine but does not work with bcp executable:
sqlCreds(password=password+";", odbc_kwargs=dict(encrypt="no"))
The text was updated successfully, but these errors were encountered: