Subject Field value concurrency between TIBOQuery and InternalDataset
Author rogervellacott
I have a procedure which takes a TIB_Dataset as a parameter, and does
a lot of work using the field values.

I want to use the same procedure for a TIBOQuery, using values which
have been edited by the user, and before the query is posted.
However, if I pass the IBOQuery.InternalDataset, I find that the
Internal values have not yet been updated with the edited values.

Is there a method of TIBOQuery which will ensure that all the
InternalDataset values agree with the IBOQuery values?

At the moment I have just duplicated the whole procedure, and changed
the parameter of the duplicate to a TIBOQuery, but it is quite long,
and this is not ideal.