以下是从网上找到的一些方法,有些是未经验证
方法一:
public int getTotalRow() throws Exception
{
int row_count=0;
rs.last() ;
row_count=rs.getRow() ;
rs.beforeFirst() ;
return row_count;
}
方法二:
用语句"select count(*) as recordCount from 表名"然后rs.getInt(recordCount)
方法三:(SQL Server)
select @@rowcount as count
可以返回上次select语句所影响的行数,返回为以count为列名的结果集
阅读(1681) | 评论(0) | 转发(0) |