Andrew Slabko
Andrew Slabko
I didn't mean to be intrusive, but I was just wondering if you plan to continue working on the book to finish the rest of the chapters. I really enjoy...
When calling `SQLConnect` with a password that contains a closing curly brace (`}`), the driver throws the following error: ``` 1:[HY000][1][unixODBC]';' expected ``` This occurs because the driver constructs a...
Power BI converts numeric types, such as `Int32`, into `Decimal` before running aggregate functions like `SUM`. For example, to get the sum of all values in the `volume` column from...
The correct version of the driver, [1.3.3](https://github.com/ClickHouse/clickhouse-odbc/releases/tag/1.3.3.20250317), and earlier versions, only support Date, leaving out Date32 and its extended range. This should be addressed in future versions of the driver....
Bool is currently represented as a string ("true" or "false"), while it should be an `SQL_BIT`, i.e., an unsigned char. The test `src/e2e/test_datatypes.py::TestDataTypes::test_bool` demonstrates the problem. As well as `AllTypesColumns`...
See `AllTypesColumns` test in `driver/test/type_info_it.cpp` -- `SQLColumns` does not indicate that columns of type `LowCardinality(Nullable(String))` are nullable.
When I create a single environment handle in the main thread and then spawn several threads, each with its own connection, and execute queries, the driver often crashes. Note that...
When connecting to a server over HTTP using **NetSSL_Win32** and `HTTPSClientSession`, there are several issues that may prevent the client from sending SNI to the server: 1. The peer hostname...
I’m a bit confused that `UNICODE` is defined by `Poco::Foundation` publicly, with no way to turn it off. As a result, every library that links against `Poco::Foundation` is effectively forced...