Re: JDBC getRow returns 0 after first instead of 1

From: Joseph Shraibman <jks(at)selectacast(dot)net>
To: Phil Davis <pmd(at)azad(dot)demon(dot)co(dot)uk>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: JDBC getRow returns 0 after first instead of 1
Date: 2000-07-31 15:26:50
Message-ID: 39859ABA.759221B4@selectacast.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

What version of the driver are you using? I fixed some off by one
errors and my fixes made it into the cvs after 7.0

Phil Davis wrote:
>
> I think the JDBC driver has several bugs around ResultSet row
> numbering. According to the JDBC API docs[1] the getRow() method on
> ResultSet should return 1 for the first row. Currently it returns zero.
>
> i.e.
> if (rs.first())
> int n = rs.getRow(); // n is now 0 instead of 1
>
> The same problem exists with the absolute and related methods which
> need to be passed 0 to go to the first row but the API docs say it should
> be 1.
>
> If I'm wrong could someone please explain what I got wrong.
>
> PS,
> Where is the CVS archive for the sources and is there anon access? I could
> not find it on the postgresql.org site.
>
> [1] http://java.sun.com/j2se/1.3/docs/api/java/sql/ResultSet.html#getRow()
>
> --
> Phil Davis - pmd(at)azad(dot)demon(dot)co(dot)uk

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Kovacs Zoltan Sandor 2000-07-31 16:00:59 function sequence error in BCB4
Previous Message Thomas Lockhart 2000-07-31 15:02:46 Re: JDBC driver GREATLY speeded up by trivial fix