Fred Martini

Results 4 comments of Fred Martini

Hello, I have the same problem using odbc from Windows to Informix. If it can help, here the ODBC trace generated : ``` dev2 b930-ed6c ENTER SQLAllocHandle SQLSMALLINT 1 SQLHANDLE...

Hi, I found that the error come from this code on **odbc_connection.cpp** : ```c++ if (set_position && data->get_data_supports.block && data->fetch_size > 1) { // In case the result set contains...

Hello, I encountered the same problem. A temporary solution would be to ignore `noData` and check the return of fetch(). So, this code : ```javascript while (!cursor.noData) { const result...