Elizabeth Figura (@zfigura) commented about dlls/odbc32/proxyodbc.c:
} else if ((env && env->win32_handle) || (con && con->win32_handle) || (stmt && stmt->win32_handle)) {
ret = env->win32_funcs->SQLError( env->win32_handle, con->win32_handle, stmt->win32_handle, SqlState,
NativeError, MessageText, BufferLength, TextLength );
ret = env->win32_funcs->SQLError( env ? env->win32_handle : NULL,
Do we need to retrieve win32_funcs from a different handle in that case?