0

我有以下问题。我正在使用 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");
        }
4

1 回答 1

2

好的,我“解决了”它。问题是我的项目导师忘记添加提交;在 sql 文件的末尾

于 2013-03-04T16:04:40.233 回答