我正试图使用Postgres作为数据库来构建一个快速JDBC应用程序,但遇到了一个有趣的问题。
我目前有两张表,表1和表2。
CREATE TABLE table1
(
a character varying NOT NULL,
b integer NOT NULL,
CONSTRAINT table1_pkey PRIMARY KEY (b)
)
CREATE TABLE table2
(
c character varying NOT NULL,
d integer,
CONSTRAINT table2_pkey PRIMARY KEY (c),
CONSTRAINT table2_d_fkey FOREIGN KEY (d),
REFERENCES table1(b) MATCH SIMPLE
ON UPDATE CSCADE ON DELETE CASCADE
)
作为我的程序的后端,我是SELECT
和*
,并保留我的查询中的ResultSet
。每个表中都有一行简单的值,它们是什么似乎并不重要。
我的语句是用标志ResultSet.TYPE_SCROLL_INSENSITIVE
和ResultSet.CONCUR_UPDATE
创建的。尽管我也尝试过SCROLL_SENSITIVE。
如果我尝试以下操作(假设ResultSet rs/rs2
中的值有效,并分别指向表1/表2:
rs.first(); // move to the first row (only row)
rs.updateInt(2, 50); // update our primary key, which is also the cascading fk
// 50 could be any number
print(rs); // Will show the old value
rs.updateRow();
print(rs); // Will show the new value
rs2.refreshRow(); // make sure we get the latest data from table2
print(rs2); // will show the old data?
我希望看到新的价值观由于级联。如果我退出并重新运行应用程序,不更改任何输入,那么它将打印正确的表2值。我猜这是由于重新运行了SELECT
语句。如果我通过运行psql或pgadmin3来查看该表,则这些值似乎正在发生变化。所以看起来refreshRow()并没有减少最新的内容。有人知道为什么吗?
我正在使用:
- java 1.6_29
- postgresql-9.1-901.jdbc4.jar
如有任何帮助,我们将不胜感激。
我希望你已经解决了,因为这是一个老问题,但为了记录在案,我在这里发布了一个我尝试过的片段,它对我有效:
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery("SELECT * FROM table1");
Statement stmt2 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet rs2 = stmt2.executeQuery("SELECT * FROM table2");
rs.first(); // move to the first row (only row)
rs.updateInt(2, 50); // update our primary key, which is also the
// cascading fk 50 could be any number
System.out.println(rs.getString(2)); // Prints the old value 12
rs.updateRow();
System.out.println(rs.getString(2)); // Prints the new value 50
rs2.first();
rs2.refreshRow(); // make sure we get the latest data from table2
System.out.println(rs2.getString(2)); // Prints the new value 50