这不是很简单的操作吗?但是,我看到既没有size()norlength()方法也没有方法。
size()
length()
SELECT COUNT(*) FROM ...而是执行查询。
SELECT COUNT(*) FROM ...
或者
int size =0; if (rs != null) { rs.last(); // moves cursor to the last row size = rs.getRow(); // get row id }
无论哪种情况,您都不必遍历整个数据。