JDBC setQueryTimeout 不起作用?
我正在通过 JAVA 使用 JDBC 驱动程序查询 MSSQL 2008 服务器。 我做了这样的事情:
PreparedStatement stmt = ...;
...
stmt.setQueryTimeout(60);
stmt.executeQuery();
我看到当 SQL 服务器上有负载时,即使超时已经过去,该语句也不会被取消。
有人对此有线索吗?
谢谢。
I'm querying MSSQL 2008 server thourgh JAVA, using the JDBC driver.
I do something like this:
PreparedStatement stmt = ...;
...
stmt.setQueryTimeout(60);
stmt.executeQuery();
I see that when there's a load on the SQL server, the statement doesn't get cancelled even though the timeout has passed.
Does anyone have a clue about this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以,YMMV 不幸的是...
参考文献:(找不到更好的东西,抱歉)
So, YMMV unfortunately...
References: (can't find anything better, sorry)