vote up 0 vote down star

Can TClientDataSet Nested (one-to-many) DataSets be created at runtime? Is there any code that shows how to do this?

Thanks,

Bill

flag

3 Answers

vote up 3 vote down

Nesting DataSets in ClientDataSets by Cary Jensen should answer your question. Also look for other articles on this site by Cary for more information on ClientDataSets.

link|flag
vote up 1 vote down

Creating a one-to-many relationship isn't all that difficult. It can be done at design-time or at runtime:

  1. Create the master dataset.
  2. Make sure it contains a primary key field.
  3. Create the detail dataset. Make sure it contains a foreign key field.
  4. Link the detail dataset to the master dataset as follows:
  5. Set the MasterSource property to the master dataset.
  6. Set the MasterField property to the primary key field of the master dataset.
  7. Set the IndexFieldNames property to the foreign key of the detail dataset.
  8. Done!
link|flag
vote up 0 vote down

What do you mean? A client dataset is a single table. But you can create a field which contains another clientdataset (which must be extracted to be used).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.