我有这个方法来获取一个行字符串并打印它们。
此外,我还要做两次while(Resultset.next())
。第一个是获取行数,第二个是打印字符串。但是当该方法运行第一次Resultset.next()
时,该方法跳过第二次Resultset.next()
。
public static String[] gett() throws ClassNotFoundException, SQLException{
// this for get conneced to the database .......................
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","hr","111");
Statement st = conn.createStatement();
ResultSet re = st.executeQuery("select location_id from DEPARTMENTS");
// Ok , now i have the ResultSet ...
// the num_row it's counter to get number of rows
int num_row = 0;
// this Arrar to store String values
String[] n = new String[num_row];
// this is the first ResultSet.next , and it's work ..!
// also , this ResultSet.next work to get number on rows and store the number on 'num_row'
while(re.next())
num_row++;
// NOW , this is the secound 'ResultSet.next()' , and it's doesn't WORK !!!!
while(re.next()) {
System.out.println(re.getString("location_id"));
}
}
问题是,第一个Resultset.next()
工作正常,但第二个不工作!
有人能解释一下原因吗?我该如何让它发挥作用?
注意:我知道,还有另一种方法可以在一个Resultset.next()
中完成但我想做两次;)
您可以将Statement
初始化为以下
conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
因此,您可以在语句中移动光标。
现在你可以循环通过它。
while(re.next())
num_row++;
re.beforeFirst();
但这是不必要的,最佳解决方案是跳到集合的末尾并返回行
num_row = 0;
if(re.last()) {
num_row = rs.getRow();
re.beforeFirst();
}
第二个rs.next()
不工作,因为rs已经到达第一个循环的结束位置。
您可以将re.next()
this存储到临时变量中。
例如ResultSet tmpRs_1 = rs;
ResultSet tmpRs_2 = rs;
然后使用这个双变量进行双循环。
或者,
您可以在单个循环中完成所有操作。这样你就不需要两个循环了。