摘要:
一、如果你这两个结果集都没有close,可以这样:rs.last();rs2.last();if (rs.getRow() != rs2.getRow()) {//记录数不等,即结果不等}rs.first();rs2.first();while (rs.next() && rs2.next()) {... 阅读全文
摘要:
原文链接:http://dev.csdn.net/develop/article/35/article/35/article/34/article/34/article/34/article/34/article/35/35924.shtm从前面的学习中,我们掌握了通过Statement类及其子类传... 阅读全文
摘要:
一、如果我这样获得一个resultsetResultSet rs=statment.execquery("select * from tab"我如何能够从resultset中获得结果集中包含的行数也就是select * from tab会选出多少行答:JDBC 2.0以上就有了,怎么会没呢?不过ne... 阅读全文
摘要:
JDBC1.0、JDBC2.0、JDBC3.0中分别用以下方法创建Statement。JDBC1.0:createStatement()JDBC2.0:createStatement(resultSetType, resultSetConcurrency)JDBC3.0: createStateme... 阅读全文