牛骨文教育服务平台(让学习变的简单)
博文笔记

java 中 从ResultSet获取select count统计结果

创建时间:2009-08-23 投稿人: 浏览次数:11018

存档

 

//获取总记录数
      ResultSet rs = statement.executeQuery("select count(*) from user_info where userid="00000001" and userpass="admin"" );


     if (rs.next())
       {

             //rs.getInt(int columnIndex )-------->columnIndex the first column is 1, the second is 2, ...
             recordCount = rs.getInt(1);
       }


       就是rs.getInt(1)而已!

阅读更多
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。