Re: How do I detect End-of-table or End-of-limit ? - Mailing list pgsql-interfaces

From Alvaro Herrera
Subject Re: How do I detect End-of-table or End-of-limit ?
Date
Msg-id 20070112003641.GI10464@alvh.no-ip.org
Whole thread Raw
In response to How do I detect End-of-table or End-of-limit ?  ("Jan van der Weijde" <Jan.van.der.Weijde@attachmate.com>)
List pgsql-interfaces
Jan van der Weijde wrote:

> However I am looking for something more elegant like a status flag in
> libpq that indicate EOF or End-Of-limit.

I don't think there's an actual "EOF".  What you see is an "end of
tuples in the result set".  Whether it is because you ran into the
LIMIT, or because you fell off the end of the table, you can't tell (nor
can the server actually).

Maybe it's more appropriate for you to open a cursor for the whole
table, and then do FETCH from it until it runs out of tuples; you will
know then that it's the end of the table.

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.


pgsql-interfaces by date:

Previous
From: "Jan van der Weijde"
Date:
Subject: How do I detect End-of-table or End-of-limit ?
Next
From: L Bayuk
Date:
Subject: Re: How do I detect End-of-table or End-of-limit ?