Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is a TClientDataset ?

dbExpress

What is a TClientDataset ?

by  towerbase  Posted    (Edited  )
A TClientDataset is an in memory implementation of a table. This has a number of implications:-

TClientDataset is very fast as no I/O takes place once it has been populated into memory.

The size of a TClientDataset is restricted by the amount of available RAM.

TClientDataset data can be modified.

Modifications to TClientDataset data can be undone. There is multilevel undo support which can provide what-if type features.

TClientDataset does not support SQL. However, you can write an SQL statement to specify what records should be used to populate the table. This SQL is sent by the TDatasetProvider to the TSQLDataset object.

TClientDataset being memory based is single user.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top