Browse Source

* fcl-db dbtestframework, export:
Add ftWideMemo,ftWideString as unsupported DBF/Fox field formats. Fixes bufdataset export.
Sort unsupported field list for easier comparison/verification.

git-svn-id: trunk@26174 -

reiniero 11 years ago
parent
commit
9619eac204
1 changed files with 4 additions and 2 deletions
  1. 4 2
      packages/fcl-db/tests/testdbexport.pas

+ 4 - 2
packages/fcl-db/tests/testdbexport.pas

@@ -75,13 +75,15 @@ function TTestDBExport.FieldSupported(const FieldType: TFieldType;
 const
 const
   // Alphabetically sorted for quick review:
   // Alphabetically sorted for quick review:
   DBaseVIIUnsupported=[ftADT,ftArray,ftBCD,ftBytes,ftCurrency,ftCursor,ftDataSet,
   DBaseVIIUnsupported=[ftADT,ftArray,ftBCD,ftBytes,ftCurrency,ftCursor,ftDataSet,
+    ftFixedWideChar,
     ftFMTBcd,ftFmtMemo,ftGraphic,ftGuid,ftIDispatch,ftInterface,ftOraBlob,
     ftFMTBcd,ftFmtMemo,ftGraphic,ftGuid,ftIDispatch,ftInterface,ftOraBlob,
     ftOraClob,ftParadoxOle,ftReference,ftTime,ftTimeStamp,ftTypedBinary,
     ftOraClob,ftParadoxOle,ftReference,ftTime,ftTimeStamp,ftTypedBinary,
-    ftUnknown,ftVarBytes,ftVariant];
+    ftUnknown,ftVarBytes,ftVariant,ftWidememo,ftWideString];
   FoxProUnsupported=  [ftADT,ftArray,                         ftCursor,ftDataSet,
   FoxProUnsupported=  [ftADT,ftArray,                         ftCursor,ftDataSet,
+    ftFixedWideChar,
     ftFMTBcd,ftFmtMemo,ftGraphic,ftGuid,ftIDispatch,ftInterface,ftOraBlob,
     ftFMTBcd,ftFmtMemo,ftGraphic,ftGuid,ftIDispatch,ftInterface,ftOraBlob,
     ftOraClob,ftParadoxOle,ftReference,ftTime,ftTimeStamp,ftTypedBinary,
     ftOraClob,ftParadoxOle,ftReference,ftTime,ftTimeStamp,ftTypedBinary,
-    ftUnknown,ftVarBytes,ftVariant];
+    ftUnknown,ftVarBytes,ftVariant,ftWideMemo,ftWideString];
 begin
 begin
   result:=true;
   result:=true;
   case ExportSubFormat of
   case ExportSubFormat of