PostgreSQL 在带键的表上更新结果集“未找到表的主键”时出错

Bil*_*ill 1 java postgresql jdbc

No primary key found for table nvp,我正在尝试对 ResultSet 进行更新,但在具有主键的表上遇到异常。

它是 PostgreSQL 9.6.1.0,jdbc 驱动程序版本是从他们的网站下载的 postgresql-9.4.1212.jar(JDBC42 Postgresql 驱动程序,版本 9.4.1212 从这里)。

@Test
public void testUpdateableResultSet() throws Exception {
    String url = "jdbc:postgresql://localhost:5432/dot";
    Properties props = new Properties();
    props.setProperty("user", "dot_test");
    props.setProperty("password", "test_dot");
    props.setProperty("currentSchema", "dot_test");

    try(Connection conn = DriverManager.getConnection(url, props)) {
        conn.setAutoCommit(false);
        try(Statement s = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE)) {
            s.execute("drop table if exists nvp");
            s.execute("create table nvp (id int primary key, value text);");
            s.execute("insert into nvp (id, value) values (1, 'one_'), (2, 'two_')");
        }

        try(PreparedStatement ps = conn.prepareStatement("select value from nvp", 
                ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
                ResultSet rs = ps.executeQuery()) {
            while(rs.next()) {
                String s = rs.getString(1);
                if(s.endsWith("_")) {
                    s = s.replace("_", "");
                }
                else {
                    s = s + "_";
                }
                rs.updateString(1, s);              // line 28
                System.out.println("row updated");
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

结果如下。

Testcase: testUpdateableResultSet(com.tekbot.lib.sql.SimpleTest):   Caused an ERROR
No primary key found for table nvp.
org.postgresql.util.PSQLException: No primary key found for table nvp.
    at org.postgresql.jdbc.PgResultSet.isUpdateable(PgResultSet.java:1586)
    at org.postgresql.jdbc.PgResultSet.checkUpdateable(PgResultSet.java:2722)
    at org.postgresql.jdbc.PgResultSet.updateValue(PgResultSet.java:3056)
    at org.postgresql.jdbc.PgResultSet.updateString(PgResultSet.java:1393)
    at com.tekbot.lib.sql.SimpleTest.testUpdateableResultSet(SimpleTest.java:28)
Run Code Online (Sandbox Code Playgroud)

这是一个错误吗?我是不是少了一步?

Rco*_*val 6

必须指定主键,以便结果集可更新

将您的查询更改为line 17

PreparedStatement ps = conn.prepareStatement("select id, value from nvp"...
Run Code Online (Sandbox Code Playgroud)

  • 我不知道如何添加电子书参考,但它来自: JDBC Recipes: A Problem-Solution Approach, Chapter 6, Section 9 “How Do You Create an Updatable ResultSet?” (2认同)