TUniQuery Interbase set Fetchall

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
mjm73
Posts: 4
Joined: Tue 17 Jun 2014 07:31

TUniQuery Interbase set Fetchall

Post by mjm73 » Tue 17 Jun 2014 07:39

Hello,
I am a new user of unidac pro and I can't find Fetchtall property in TuniQuery or in TuniQuery.SpecificsOptions.
with fQry = TUniQuery,I try :
fQry.SpecificOptions.Add('InterBase.FetchAll=True');

But it doesn't work !
An idea ?
Thanks you.

pmoegenb
Posts: 16
Joined: Wed 27 Jun 2012 07:57
Contact:

Re: TUniQuery Interbase set Fetchall

Post by pmoegenb » Tue 17 Jun 2014 08:22

mjm73 wrote:

Code: Select all

fQry.SpecificOptions.Add('InterBase.FetchAll=True');

Code: Select all

fQry.SpecificOptions.Values['FetchAll'] := 'True';

mjm73
Posts: 4
Joined: Tue 17 Jun 2014 07:31

Re: TUniQuery Interbase set Fetchall

Post by mjm73 » Tue 17 Jun 2014 08:26

Thank you.
Have a good day

Post Reply