VirtualTable and IBX?

Discussion of open issues, suggestions and bugs regarding Virtual Data Access Components for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
werkstattboss
Posts: 20
Joined: Fri 15 May 2009 17:53

VirtualTable and IBX?

Post by werkstattboss » Fri 15 May 2009 18:08

Hello,
I just got my IBDAC license and I am trying to migrate from IBX. I guess it will take some time to convert my app completely.
But, I need a Dataset for reporting purposes with the ability to delete records in the report but not in the real table.
I used to do it with a ClientDataSet.
Now I wonder whether it might be possible to start at this point with the migration. Sort of...

Is it possible to fill a TVirtualTable with records from an IBX Dataset???

TIA

Rolf

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Mon 18 May 2009 07:49

You can set the LocalUpdate property of TIBCQuery to prevent it from sending changes to the database.

You can use the Assign method of TVirtualTable to fill it with data from a dataset.

Post Reply