Patch for JDBC driver not returning correct # of records deleted

From: Barry Lind <barry(at)xythos(dot)com>
To: pgsql-patches(at)postgresql(dot)org
Subject: Patch for JDBC driver not returning correct # of records deleted
Date: 2000-08-15 18:14:22
Message-ID: 3999887E.751C2519@xythos.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

I had a problem with the JDBC driver (in 7.0.2) always returning 1 as
the row count for deletes (whether the actual delete affected 0 or more
rows). In looking through the source this appears to be a simple one
line code fix.

Change line 370 in src/interfaces/jdbc/org/postgresql/Connection.java
v1.1 from:
if(recv_status.startsWith("INSERT") ||
recv_status.startsWith("UPDATE")) {
to:
if(recv_status.startsWith("INSERT") ||
recv_status.startsWith("UPDATE") || recv_status.startsWith("DELETE")) {

thanks,
--Barry

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Pete Forman 2000-08-18 09:51:03 Update tests/regress/resultmap for IRIX 6
Previous Message Karel Zak 2000-08-08 07:55:34 Re: to_char's ISO week