Denis Glazachev
Denis Glazachev
I tried the following with each of these: `unixodbc` and `libiodbc`. ```sh cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTING=OFF -DOPENSSL_ROOT_DIR=$(brew --prefix)/opt/openssl -DICU_ROOT=$(brew --prefix)/opt/icu4c .. cmake --build . --parallel ``` In both scenarios driver was...
You can try `\` to escape `?`'s.
Thanks for the find! Do you have precise steps to reproduce?
Have you built the driver from sources yourself?
Meanwhile, I tried with `ODBCTest` tool (in Windows) and `isql` tool (in Linux), and both, `null`'s and `nan`'s seem to work with either of those tools as expected in the...
Thanks for the find. Going to change those lines to this: ```c++ char * param_ptr = reinterpret_cast(param); ASSERT_LT(initial_str.size(), lengthof(param)); std::strncpy(param_ptr, initial_str.c_str(), lengthof(param) - 1); ```
Could you please attach a fully standalone reproducible case. I don't think named parameters will work as you expect. To some extent driver will be able to process them, but...
Changing `Computer\HKEY_CURRENT_USER\Software\WinNUT\Connexion\Delay` registry `DWORD` value to `1` fixed the crash for me.
@DarkWanderer could you please also attach the relevant log messages from the ClickHouse server (should be somewhere before the generic `password is incorrect or there is no user with such...
> Unfortunately not (closed network, cannot send data) This would really help. > Same server authenticates correctly if accessed with a custom Curl version which sends headers straightaway What do...