Markus Klein
Markus Klein
Trying to insert a table which contained a column with only NULL values caused turbodbc to report a casting error (most likely because it left the python type as `object`)....
Saw this `test_cursor_async_io::test_many_batches_with_async_io` fail with access violation. Seems unrelated to code change, which triggered the build on appveyor. https://ci.appveyor.com/project/MathMagique/turbodbc/builds/26533096/job/qwes783tnc283tl2
Prompt for password if the user does not provide one then connecting via dsn on the command line. Consider using https://crates.io/crates/indicatif to handle the user dialog. How do we want...
Queries can already be executed asynchronously, but opening the connection is still blocking.
https://docs.microsoft.com/en-us/sql/odbc/reference/develop-app/asynchronous-execution-polling-method?view=sql-server-ver15
Contrary to MSSQL, Maria DB does not check for truncation then binding parameters. This can be used to insert junk bytes beyond the valid buffer length to be inserted into...
Inspired by #284 and #285. The switch to logical types allowed `odbc2parquet` to select better fitting types in many situations. However, if logical types are not supported by the next...
Server returns status failed (in http body). Msg is: ``` Could not connect to postgres instance: fe_sendauth: no password supplied ``` http code is 200 ok. As it stands now,...
Changed mode interface from &[] slices to IntoIterator. Sadly, I think it would take unstable compiler features to make mode return primitives by value instead of references for ranges not...