I am getting the above error when running bellow code in a C# (.Net FX 4.0) app (Windows). Connection opens but the error occurs on line
command.ExecuteReader();var connection = new OdbcConnection("Driver={ClickHouse ANSI};SERVER=172.<<IP_ADDRESS>>;DATABASE=<<DB_NAME>>;PORT=<<PORT>>;FRAMED=0;Uid=<<USER>>;Pwd=<<PASSWORD>>");
var strSql = "SELECT * FROM tblName LIMIT 2";
var command = new OdbcCommand(strSql, connection);
connection.Open();
var reader = command.ExecuteReader();