当前位置: 技术问答>java相关
结果集rs,除了自己循环统计外,有什么函数直接得到返回的行数吗??
来源: 互联网 发布时间:2015-03-13
本文导语: | 使用count()就可以啊! String sql="select count(*) as aid from tb_name"; .... if(rs.next()) rcdnum=rs.getInt("aid"); 在 jdbc2中rs.getRow();返回当前记录数 int getRow() Retrieves the current row number. | ...
|
使用count()就可以啊!
String sql="select count(*) as aid from tb_name";
....
if(rs.next())
rcdnum=rs.getInt("aid");
在 jdbc2中rs.getRow();返回当前记录数
int getRow()
Retrieves the current row number.
String sql="select count(*) as aid from tb_name";
....
if(rs.next())
rcdnum=rs.getInt("aid");
在 jdbc2中rs.getRow();返回当前记录数
int getRow()
Retrieves the current row number.
|
好象没有。
只能这样
rs.last();
rs.getRow()
只能这样
rs.last();
rs.getRow()
|
自己写