I have a TClientDataSet connected to some controls via LiveBindings. Assuming that:
- no concurrent accesses to dataset is made
- all controls are "hidden" (not disabled)
Can I update the dataset from a background thread?
If this is not safe, would be ok to set Active = false all binding links while updating the dataset? Finally, is there a centralized way to enable/disable all binding links? (something like EnableControls/DisableControls for datasets)
Begin Edit
This is not a question about TClientDataSet thread-safety, but rather a question about accessing a dataset from outside VCL thread (which is also safe if there are no concurrent access also from VCL thread) while there are active LiveBindings connections to some controls.
In this other question about thread-safe TClientDataSet access there are no info about LiveBindings and non-VCL thread access.
End Edit
(Environment: C++ Builder 10.3 or 10.4, VCL based application) Thanks, Alex B.