【java.sql.SQLException: Before start of resu…

2018-08-17 09:39:53来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

将ResultSet转换为 Map<String,String>时抛出了一个这样的异常:java.sql.SQLException: Before start of result set

网上查了下,说是必须这么写:
1 while (rs.next()){
2 
3     ...    ...
4 }

具体为什么必须这么写呢?stackoverflow上面的阿三大兄弟给出了答案:

Would it be safe to use result.next() or result.first() when executing a simple COUNT query because it should never be null and will only ever be 1 result.

翻译:使用 result.next() or result.first() 为了保证安全,因为它永远不应该为null并且结果只会是1;

原文地址:https://stackoverflow.com/questions/2120255/resultset-exception-before-start-of-result-set

吐槽:浓浓的咖喱味英语  呕~~~

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【微服务架构】SpringCloud之Feign(五)

下一篇:Java:简单二叉树的实现以及前序,中序,后序遍历