I have a problem with setting FetchRows of TOraQuery . (Delphi 7)
I use a TOraQuery which may return about 500 records .
SQL string contains join of three tables
Code: Select all
select T1.* from T1
inner join T2 on T1.k = T2.k
inner join T3 On T3.k = T1.k
Where ...FetchAll := False;
FetchRows := 25; //-->(Default value)
but when execute the query all record are fetched (not considering FetchRows Value)
any other special settings should be done ?
Thanks
Mahya