The 'invalid field type' error with TClientDataSets I don't understand - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:42:46Zhttp://stackoverflow.com/feeds/question/346142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/346142/the-invalid-field-type-error-with-tclientdatasets-i-dont-understand1The 'invalid field type' error with TClientDataSets I don't understandRiaan de Villiers2008-12-06T09:44:46Z2008-12-06T13:40:41Z
<p>Hi</p>
<p>I use nested database stuctures with TClientDataSets. I'm new to programming so my lingo is ten-to-one wrong. </p>
<p>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. </p>
<p>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?</p>
<p>Does anybody have any information about this problem. I use Delphi 2007</p>
<p>Kind Rgards</p>
<p>Riaan de Villiers </p>
http://stackoverflow.com/questions/346142/the-invalid-field-type-error-with-tclientdatasets-i-dont-understand/346270#3462701Answer by Fabio Gomes for The 'invalid field type' error with TClientDataSets I don't understandFabio Gomes2008-12-06T13:34:44Z2008-12-06T13:40:41Z<p>It is a Delphi bug.</p>
<p>Call YourDataset.FieldDefs.Clear before calling CreateDataSet and it should work.</p>
<p>For more infomation please look at this QC Report:</p>
<p><a href="http://qc.codegear.com/wc/qcmain.aspx?d=38984" rel="nofollow">http://qc.codegear.com/wc/qcmain.aspx?d=38984</a></p>
<p><strong>EDIT:</strong></p>
<p>After reading your problem more carefully, the problem might be something else, but please try the FieldDefs.Clear and let me know the results.</p>