windiana42
windiana42
Out of the box, the current database tests don't run for me (Linux) and I am not sure, I want to configure my machine such that this mechanism works. Here...
One SQL Server connection can be used to access multiple databases within the same server. SQLalchemy deals with this by allowing schema=. parameters. That would work with bcp executable as...
Spinning up a SQL Server database as Linux running container is a nice way to test code meant for SQL Server databases. However, to use bcpandas with such a database,...
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...
One can see it as a user error that `Condition(rawstring="col is not NULL")` fails if col does not exist in table. However, the general concept of datajudge seems to be...
This PR is supposed to fix #228
This is a low priority issue since it is most likely hard to fix with the bcp executable. But I would like to document a workaround. In case bcpandas writes...
The following error occurs when trying to write a pyarrow[bool] column with bcpandas: `pyarrow.lib.ArrowInvalid: Could not convert 1 with type int: tried to convert to boolean` This is caused by...