新放置一个Table控件 Table1,不要添加永久字段
TStringList *theList;
theList = new TStringList;
Table1->Open();
Table1->GetFieldNames(theList);
Table1->Close();
此时theList中保存了表中的所有字段名。
TStringList *SolidList;
theList = new TStringList;
Table2->Open();
Table2->GetFieldNames(SolidList);
Table2->Close();
此时SolidList中保存了永久字段名。Table2是创建了固定字段的表
再进行比较就行了