我在VS2008中构建了PostgreSQL ODBC驱动程序,然后运行odbcad32.exe,创建DSN并单击“测试”按钮。它工作正常。 然后我复制文件夹并在VS2010中重建它,然后执行相同的操作:我收到错误消息COuld不发送查询(连接死机)。
然后我做了:在VS2005中编译 - 一切正常。 在Vs2012 - 不起作用。 我在Debugger中检查过:是的,在短查询执行期间套接字被关闭,按钮Test生成类似这样的查询序列:
set DateStyle to 'ISO'
....
set extra_float_digits to 2
...
[5912-1.471]CC_send_query: conn=04460048, query='select oid, typbasetype from pg_type where typname = 'lo''
[5912-1.472]send_query: done sending query 63bytes flushed
[5912-1.473]in QR_Constructor
[5912-1.473]exit QR_Constructor
[5912-1.473]read -1, global_socket_buffersize=4096
[5912-1.474]Lasterror=10035
[5912-1.474](5)Error while reading from the socket. ERRNO=10035
[5912-1.475]CC_error_statements: self=04460048
[5912-1.475]CONN ERROR: func=CC_send_query, desc='', errnum=107, errmsg='No response from the backend'
...
[5912-1.481]CC_lookup_characterset: entering...
[5912-1.481]CC_send_query: conn=04460048, query='select pg_client_encoding()'
[5912-1.482]CC_error_statements: self=04460048
[5912-1.482]CONN ERROR: func=CC_send_query, desc='', errnum=104, errmsg='Could not send Query(connection dead)'
这种不同行为可能是什么原因?
答案 0 :(得分:2)
“问题”是因为VS2010 EWOULDBLOCK(在errno.h中定义)!= WSAEWOULDBLOCK,而开发人员依赖这两个值是相同的,类似于:
r = recv( ... );
if (r == -1 && WSAGetLastError() == EWOULDBLOCK) { ... }
以前用于旧版本VS的内容不再适用。