Is a TClientDataset a Virtual Database Table?

I was reading the Rubicon 4 Manual… It mentioned TClientDataSet… is this a Virtual Database table instead of a physical one ?

Sort of. It might the whole table or the result of a query for a subset of a table, or query on a combination of tables.

Reference: DocWiki TClientDataSet

Excerpt…

TClientDataSet implements a database-independent dataset.

TClientDataSet represents an in-memory dataset. A client dataset can be used as:

  • A fully functional, stand-alone, file-based dataset for single-tiered database applications. When used in this manner, the client dataset represents the data stored in a dedicated file on the user’s hard disk.

  • A local in-memory buffer of the records from another dataset. The other (source) dataset can reside in the same form or data module as the client dataset (for example, when the client dataset provides navigation and editing support for the data from a unidirectional dataset). The source dataset can also reside on a separate system when the client dataset supports the client portion of a multitiered database application.

1 Like