Another jdbc2 ResultSet patch

From: Travis Bauer <trbauer(at)indiana(dot)edu>
To: pgsql-patches(at)postgresql(dot)org
Subject: Another jdbc2 ResultSet patch
Date: 2000-06-09 14:35:48
Message-ID: Pine.GSO.4.21.0006090927240.17055-200000@piccolo.cs.indiana.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

This patch fixes the 0-based/1-based result set indexing problem for
absolute. It also makes it more compliant with the interface
specification in Sun's documentation;

1. absolute(0) should throw an exception.
2. absolute(>num-records) should set the current row to after the last
record in addition to returning false.
3. absolute(<num-records) should set the current row to before the first
record in addition to returning false.

These operations in the existing code just return false and don't change
current_row.

These changes required a minor change to relative(int) since it calls
absolute(int)

The attached patch is against the cvs repository tree as of this morning.

Also, who is in charge of maintaining the jdbc driver? I'm working on
getArray for the jdbc2 driver, but it's going to require three more
classes to be added to the driver, and thus three more source files
in the repository. Is there someone I can contact directly to ask about
this?

Thanks,

----------------------------------------------------------------
Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer
----------------------------------------------------------------

Attachment Content-Type Size
diff.txt text/plain 1.7 KB

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2000-06-09 15:05:21 Re: Re: [CORE] Re: MY PATCH
Previous Message Bruce Momjian 2000-06-09 13:18:21 Re: Re: [CORE] Re: MY PATCH