UniDAC and FetchAll

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
jlund
Posts: 22
Joined: Wed 17 Nov 2004 18:50

UniDAC and FetchAll

Post by jlund » Mon 13 Jul 2009 14:09

Hi
I am migrating from MyDAC, and i miss the FetchAll property of TUniQuery, that I used heavily i MyDAC.

How do I convert ?

FurtherMore, TMyCommand isn't converted using the migration wizard.
Any idea why ?

TIA Jens Lund

tobias_cd
Posts: 56
Joined: Thu 18 Dec 2008 22:10

Post by tobias_cd » Tue 14 Jul 2009 06:16

For FetchAll you might look for "SpecificOptions" in the help.
Examples:
// only for Oracle:
TUniQuery.SpecificOptions.Add('Oracle.FetchAll=False');
// independent of DBMS:
TUniQuery.SpecificOptions.Add('FetchAll=False');

Post Reply