L lnboy Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-14 #2 使用 rs.last() 的话需要设定滚动方式 在 createStatement 的时候先加上参数 ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE); 然后 ResultSet.last(); int count=ResultSet.getRow();
使用 rs.last() 的话需要设定滚动方式 在 createStatement 的时候先加上参数 ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE); 然后 ResultSet.last(); int count=ResultSet.getRow();
L li_cj Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-15 #3 num=0; while rs.next() { num++; }