Page 1 of 1
Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
Posted: Wed 04 Dec 2013 16:02
by petersen
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
Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
Posted: Thu 05 Dec 2013 11:27
by AndreyZ
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);
Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
Posted: Thu 05 Dec 2013 11:55
by petersen
hi
thanks for your answer! tibcloader sound great - that should help us a lot!
Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
Posted: Thu 05 Dec 2013 12:17
by AndreyZ
You are welcome. Feel free to contact us if you have any further questions about IBDAC.