本文介紹了檢查Java中的ResultSet是否為空的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我在程序中使用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);
但我仍然得到相同的結果(我得到的消息是空的,數據來自數據庫!)
我在這里做錯了什么?
推薦答案
如果我理解您的目標,您可以使用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
}
這篇關于檢查Java中的ResultSet是否為空的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,