Page 1 of 1
TClientDataSet ...
Posted: Wed 22 Sep 2010 12:42
by nico806
Hello,
what is the difference between TVirtualTable and TClientDataSet of Delphi ?
Thx
Nico
Posted: Wed 22 Sep 2010 20:47
by 99Percent
Although TClientDataSet by itself is very powerful, it requires another object, the TDataSetProvider in order to be able to access external data which in my opinion adds unnecesarry complexity to an already very confusing enterprise.
I highly recommend you avoid TClientDataset like hell as it ties you to Codegear's data models and future development. I am myself migrating all my Delphi development to Lazarus where there is NO equivalent for TClientDataset.
Posted: Thu 23 Sep 2010 12:04
by AndreyZ
Thank you, 99Percent, for your help.
TVirtualTable component represents an in-memory data storage that does not have linked data files. It can store record data in the file (at run-time) and in dfm (at design-time).