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
Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
-
AndreyZ
Re: Migrate from FIBPlus to IBDAC - "OnFieldChange"-Event and "BatchToQuery" method
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:
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
hi
thanks for your answer! tibcloader sound great - that should help us a lot!
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
You are welcome. Feel free to contact us if you have any further questions about IBDAC.