Re: isLast() and empty ResultSet - Mailing list pgsql-jdbc

From Kris Jurka
Subject Re: isLast() and empty ResultSet
Date
Msg-id Pine.BSO.4.56.0504211700090.24801@leary.csoft.net
Whole thread Raw
In response to isLast() and empty ResultSet  ("Ruediger Herrmann" <ruediger.herrmann@gmx.de>)
List pgsql-jdbc

On Thu, 21 Apr 2005, Ruediger Herrmann wrote:

> I implemented an Iterator interface iterating over a ResultSet. Therefore
> I rely on isLast() to implement the Iterator#hasNext() method. This works
> fine unless the whole ResultSet is empty.
> For empty RresultSets, isLast always returns true.

It always returns false because isLast implies that you are on the last
row of the ResultSet.  If the ResultSet is empty you aren't on a row,
so you can't be on the last row.

Kris Jurka

pgsql-jdbc by date:

Previous
From: Dennis Sacks
Date:
Subject: Re: switching from 7.4.1 to 8.0-311 jdbc driver
Next
From: Oliver Jowett
Date:
Subject: Re: isLast() and empty ResultSet