Subject | RowSelected property |
---|---|
Author | fabiobot |
Post date | 2002-04-27T16:38:05Z |
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.
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.