Markus Klein
Markus Klein
Hi @leo-schick , as stated in the conclusion of the `parquet` crate (and therefore also `odbc2parquet`) do emit a converted type. The bug seems to be in the readers which...
Hi @lanklaas , thanks for giving the async API a spin. It comes with a bunch of caveats, but in this case it's just something in the error message you...
May I ask why you spawn a task with `tokio::task::spawn`?
Sorry for the confusion with the `Mutex`. It won't help you in this situation, because it is not only the Connection itself which needs to be `Sync`. The futures emitted...
Thank you too. Especially for the minimal reproducing example. I'll leave it open until it's either working or I understand precisly why it can not.
This is a Bug in `iodbc`. It is with the implementation of `SQLDrivers`. In this case the pointer to the buffer passed to `SQLDrivers` did not as commended by the...
It would seem to me that it has either been fixed at latest with ODBC driver version 17, or it was never a driver error to begin with. I can...
`fetch_wchar_as_char` means it will bind a narrow encoding as a C-Type even if the relational type indicates that this column is using a wide encoding. Speaking more of ODBC than...
Hello @timrburnham , > It would be convenient to be able to re-use specific database connections for explicitly sequential tasks. For instance, declare a temporary table, insert some rows from...