vote up 1 vote down star

Hi

I use nested database stuctures with TClientDataSets. I'm new to programming so my lingo is ten-to-one wrong.

My problem is as follows: I defined my database stucture and all the fields of the nested stuctures and then I called the CreatDataSet method of the master clientDataSet and it worked. I then wanted to add another data field to the master ClientDataSet. I then called the ClearData method of the Master ClientDataSet and then tried to create the new stucture by calling CreateDataSet again. It is here where I encounter my problem. I get the 'Invalid field type error' and I don't really know or understand what what the problem is.

So how do I create an exsta field after I called the createdata set method, then called the cleardata method, then added a field and then calling the createdataset method again without getting the 'invalid field type error?

Does anybody have any information about this problem. I use Delphi 2007

Kind Rgards

Riaan de Villiers

flag

1 Answer

vote up 1 vote down

It is a Delphi bug.

Call YourDataset.FieldDefs.Clear before calling CreateDataSet and it should work.

For more infomation please look at this QC Report:

http://qc.codegear.com/wc/qcmain.aspx?d=38984

EDIT:

After reading your problem more carefully, the problem might be something else, but please try the FieldDefs.Clear and let me know the results.

link|flag
I though of FieldDefs too. Normally StoreDefs (for standard TClientDatasets) is set to True. – Fabricio Araujo Dec 8 '08 at 21:46

Your Answer

Get an OpenID
or

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