java中ResultSet,获取该对象的行数用哪个方法,就是获取记录总数

 我来答
白玉兰兰李杏花H
2012-10-25 · TA获得超过974个赞
知道小有建树答主
回答量:270
采纳率:100%
帮助的人:126万
展开全部
用.getMetaData().getColumnCount() 方法 意思就是用ResultSet的对象 获得元数据 在获得记录总数
柠萌茶123456
2015-10-31 · 超过22用户采纳过TA的回答
知道答主
回答量:73
采纳率:0%
帮助的人:35.5万
展开全部
不做其他的,单纯获取记录总数的话,可以循环,
int count = 0;
while(ResultSet.next()){

count + = 1;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友12ee0fd
2012-10-25 · TA获得超过4.7万个赞
知道大有可为答主
回答量:1.1万
采纳率:66%
帮助的人:2337万
展开全部
可以使用 SQL
try {
// Select the number of rows in the table
Statement stmt = connection.createStatement();
ResultSet resultSet = stmt.executeQuery("SELECT COUNT(*) FROM my_table");

// Get the number of rows from the result set
resultSet.next();
int rowcount = resultSet.getInt(1);
} catch (SQLException e) {
}

方法2

try {
// Create a scrollable result set
Statement stmt = connection.createStatement(
ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
ResultSet resultSet = stmt.executeQuery("SELECT * FROM my_table");

// Move to the end of the result set
resultSet.last();

// Get the row number of the last row which is also the row count
int rowCount = resultSet.getRow();
} catch (SQLException e) {
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式