Problem with FetchRows - [FetchAll = False]
Posted: Sat 19 May 2007 19:36
Hi
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
In TOraQuery properties I set :
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
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