我有以下问题。我正在使用 JDBC 并进行查询。但是 qry 不起作用。如果我让打印出 rs.next() 它返回 false。
相同的 qry 适用于 SQL-Developer 本身,只是不适用于 JDBC。问:
ResultSet rs = stmt.executeQuery("select account_id, oper_type, new_value from action where account_id = 1");
//ResultSet rsAccount = stmt.executeQuery("select account_id from accounts");
System.out.println("Accounts Update");
System.out.println(rs.next());
if(rs.next() == true){
System.out.println("Not null");
}