Adding a field to a cloned TClientDataset in DELPHI

Hi, I have a master and a cloned set of TClientData p>

CdsCloned.CloneCursor(CdsMaster,true);

CdsMaster has two SessionId 'fields and UserID' CdsCloned will have the same fields

QUESTION: Is it possible to add an additional field to CdsCloned without changing CdsMaster?

+3
source share
1 answer

There are two questions here: can I add an extra TField and add an extra data field.

, TDataSet, TFields, . , , TFields , , , . .

, . , . , , , , - TField /. , , , .

, , "" , Data CloneCursor. , "", "" .

+11

Source: https://habr.com/ru/post/1702269/


All Articles