我有这个方法来获取一串行并打印它们。
此外,我必须做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()
还有另外一种方法可以做到这一点
但我想做两次;)
答案 0 :(得分:5)
您可以将Statement
初始化为以下
conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
因此,您可以在Statement中移动光标。
现在你可以循环播放它。
while(re.next())
num_row++;
re.beforeFirst();
但这是非常必要的,最佳解决方案是跳到集合的末尾并返回行
num_row = 0;
if(re.last()) {
num_row = rs.getRow();
re.beforeFirst();
}
答案 1 :(得分:-2)
第二个rs.next()
无法正常工作,因为rs已经通过第一个循环进入了最终位置。
您可以将re.next()
存储到临时变量中。
例如ResultSet tmpRs_1 = rs;
ResultSet tmpRs_2 = rs;
然后将这两个变量用于两个循环。
或者,
您可以在单循环中执行所有操作。所以你不需要两个循环。