2016-12-09 85 views
0

我試圖做一個ResultSet的更新,我得到一個例外,No primary key found for table nvp,有一個主鍵的表。PostgreSQL錯誤更新ResultSet「找不到表的主鍵」表w /鍵

它是PostgreSQL 9.6.1.0,jdbc驅動程序版本是從他們的網站(JDBC42 Postgresql驅動程序,版本9.4.1212從here)下載的postgresql-9.4.1212.jar。

@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"); 
      } 
     } 
    } 
} 

具有以下結果。

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) 

這是一個錯誤?我錯過了一步嗎?

+0

這行是第28? –

+1

@ScaryWombat'rs.updateString(1,s);' – Thrasher

+0

這是否發生在'while'的第一次迭代?你是否錯過了'updateRow()'? –

回答

4

主鍵必須指定,這樣的結果集是可更新的

更改上line 17到您的查詢:

PreparedStatement ps = conn.prepareStatement("select id, value from nvp"... 
+1

引用來自哪裏? – Bill

+0

在後見之明中很明顯eh –

+1

我不知道如何添加電子書引用,但它來自:JDBC Recipes:一種問題解決方案方法,第6章,第9節「您如何創建可更新的ResultSet? – Thrasher