Subject | Re: [IBO] RowSelected property |
---|---|
Author | Jason Wharton |
Post date | 2002-04-29T21:44:14Z |
I have no idea except that there have been some records updated or
something.
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
something.
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
----- Original Message -----
From: "fabiobot" <fabiobot@...>
To: <IBObjects@yahoogroups.com>
Sent: Saturday, April 27, 2002 9:38 AM
Subject: [IBO] RowSelected property
Hi,
Why the RowSelected property from ib_cursor doesn't return the
correct number of records from select. By example, the ib_cursor
have fetched 494 records, but RowSelected have 492.
Please see sample below.
n1 := 0
n2 := 0;
with IB_Cursor do
begin
First;
n1 := RowSelected;
n2 := 0
while not Eof do
begin
Inc(n2);
Next;
end;
end;
Result is: n1 = 492 and n2 = 494
Somebody know about this?
Thanks,
Fábio.