我在我的程序中使用HSQLDB。我想检查我的结果集是否为空。
//check if empty first
if(results.next() == false){
System.out.println("empty");
}
//display results
while (results.next()) {
String data = results.getString("first_name");
//name.setText(data);
System.out.println(data);
}
上述方法无法正常工作。根据此post,我必须调用.first()
或.beforeFirst()
将光标停留在第一行,但HSQL中不支持.first()
和.beforFirst()
。我还尝试添加connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
但我仍然得到相同的结果(我得到消息为空,数据来自DB!)
我在这里做错了什么?
答案 0 :(得分:11)
如果我了解您的目标,您可以使用do while
循环
if (!results.next()) {
System.out.println("empty");
} else {
//display results
do {
String data = results.getString("first_name");
//name.setText(data);
System.out.println(data);
} while (results.next());
}
或者,你可以保持count
这样,
int count = 0;
//display results
while (results.next()) {
String data = results.getString("first_name");
//name.setText(data);
System.out.println(data);
count++;
}
if (count < 1) {
// Didn't even read one row
}