full tuple count in cursor.

Started by Alexander Cohenalmost 22 years ago2 messagesgeneral
Jump to latest
#1Alexander Cohen
alex@toomuchspace.com

I have a cursor that i got from a select statement. I would like to
know how many records are in the cursor so i dont go over the last one
when using FETCH on the cursor. How can i do this?

thanks!

--
Alexander Cohen
http://www.toomuchspace.com
(819) 348-9237
(819) 432-3443

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alexander Cohen (#1)
Re: full tuple count in cursor.

Alexander Cohen <alex@toomuchspace.com> writes:

I have a cursor that i got from a select statement. I would like to
know how many records are in the cursor so i dont go over the last one
when using FETCH on the cursor. How can i do this?

You can't. The system does not know how many rows will be in the query
until it executes it. So the only way to obtain this information is to
FETCH the data. (Or MOVE over it, but that's only marginally faster,
and is probably a dead loss if you intend to FETCH the data anyway
later.)

regards, tom lane