What is the difference between ADOTable and ClientDataSet?
Both components are capable of performing Batch Update, why add the extra overhead of having 2 additional components like ClientDataSet and DataSetProvider.
What is the difference between ADOTable and ClientDataSet ? Both components are capable of
Share
The main difference is that ClientDataSet can operate without a connection to external database. You can use it as in-memory table or load it’s contents from file.
In combination with DataSetProvider it is frequently used to overcome limits of unidirectional datasets and as a cache.