Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
petersen
Posts: 13
Joined: Mon 16 Jul 2012 08:56

Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method

Post by petersen » Wed 04 Dec 2013 16:02

hi

we are currently migrating one of our projects from fibplus to ibdac.

everything works like a charm - but now we need hints on how to best "translate"

a) the FIBDataset.OnFieldChange event and
b) the FIBDataset.BatchToQuery method

can anybody help?!

thanks
petersen

AndreyZ

Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method

Post by AndreyZ » Thu 05 Dec 2013 11:27

Hello,

a) For the time being IBDAC doesn't have such functionality. You can leave your suggestion at our UserVoice page ( http://devart.uservoice.com/forums/1046 ... components ), and if there are many votes for your suggestion, we will implement it.
As a workaround, you can create persistent fields and use the OnChange event.

b) You can try using the TIBCLoader component, which serves for fast loading of data to the server. Here is a code example:

Code: Select all

IBCLoader1.TableName := 'tablename';
IBCLoader1.LoadFromDataSet(TDataSet);

petersen
Posts: 13
Joined: Mon 16 Jul 2012 08:56

Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method

Post by petersen » Thu 05 Dec 2013 11:55

hi

thanks for your answer! tibcloader sound great - that should help us a lot!

AndreyZ

Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method

Post by AndreyZ » Thu 05 Dec 2013 12:17

You are welcome. Feel free to contact us if you have any further questions about IBDAC.

Post Reply