ResultSet获取结果集长度

 ResultSet count = dal.selectSql(sql);
                int rowCount = 0;
                while(count.next()) {
                    rowCount++;
                }

你可能感兴趣的:(JAVA)