BUG #1233: JDBC driver: moveToCurrentRow fails - Mailing list pgsql-bugs

From PostgreSQL Bugs List
Subject BUG #1233: JDBC driver: moveToCurrentRow fails
Date
Msg-id 20040827095955.E1D035A1154@www.postgresql.com
Whole thread Raw
Responses Re: BUG #1233: JDBC driver: moveToCurrentRow fails  (Kris Jurka <books@ejurka.com>)
List pgsql-bugs
The following bug has been logged online:

Bug reference:      1233
Logged by:          David Bucciarelli

Email address:      dbucciarelli@tradesoft.it

PostgreSQL version: 7.4.3

Operating system:   Linux Suse 9.0

Description:        JDBC driver: moveToCurrentRow fails

Details:

The method moveToCurrentRow in the ResultSet class of the  JDBC driver fails
with the following message:

"Result Set not updateable. The query that generated this result set must
select only one table, and must select all primary keys from that table. See
the JDBC 2.1 API Specification, section 5.6 for more details."

even if the query _include_ all primary keys and selects only one table (the
same code works fine with other JDBC drivers: i.e. MySql).

I guess this happen because the code at line 679 of the
org.postgresql.jdbc2.AbstractJdbc2ResultSet.moveToCurrentRow should be:

if ( !isUpdateable() )

instead of:

if (!updateable)

Thanks and my best regards,
David Bucciarelli

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: Memory leak
Next
From: "PostgreSQL Bugs List"
Date:
Subject: BUG #1234: prepared statements and libpq don't work as expected