David Engelmann

Results 76 comments of David Engelmann

[I'm observing this as well](https://github.com/david-engelmann/turbodbc/pull/5/checks)

@mikhailkoliada Thank you, will the actions/python-versions team still need to be aware of the issue?

other errors observed while trying to resolve ``` failed to solve: archive/tar: unknown file mode ?rwxr-xr-x ``` additional info in this issue - https://github.com/docker/for-win/issues/14083 and a relevant comment - https://github.com/LIAAD/physio/issues/2#issuecomment-2119341390

It might be related to the versions of numpy and pandas. Try adjusting the following lines in the requirements.txt ``` ... numpy==1.21.6 pandas==1.3.5 ... ``` From == to >= ie....

[Branch for tracking progress](https://github.com/david-engelmann/turbodbc/pull/6). ``` @for_one_database def test_next_set_with_many_column_names(dsn, configuration): cursor = connect(dsn, **get_credentials(configuration)).cursor() cursor.execute("SELECT 1 as Column1;Select 2 as Column2;Select 3 as Column3;Select 4 as Column4") result_one = cursor.fetchallnumpy() print(result_one)...

[Relevant Documentation of SQLMoreResults](https://learn.microsoft.com/en-us/sql/odbc/reference/syntax/sqlmoreresults-function?view=sql-server-ver16) I believe the most relevant section is as follows: ``` When SQLMoreResults returns SQL_ERROR or SQL_SUCCESS_WITH_INFO, an associated SQLSTATE value can be obtained by calling SQLGetDiagRec...

Are you able to download other projects without issue? Was the get_profile command successful? Sometimes the TimeoutError means that the client is not getting any response—as if the Doccano did...