Преглед изворни кода

fcl-db: cosmetic

git-svn-id: trunk@26973 -
reiniero пре 11 година
родитељ
комит
7f22ae17ff
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      packages/fcl-db/src/dbase/dbf_fields.pas

+ 3 - 1
packages/fcl-db/src/dbase/dbf_fields.pas

@@ -448,6 +448,7 @@ end;
 procedure TDbfFieldDef.VCLToNative;
 begin
   FNativeFieldType := #0;
+  // to do: look into ftBytes support; e.g. Visual FoxPro varbytes?
   case FFieldType of
     ftAutoInc  :
       if DbfVersion=xVisualFoxPro then
@@ -474,7 +475,8 @@ begin
 {$ifdef SUPPORT_INT64}
       , ftLargeInt
 {$endif}
-               : FNativeFieldType := 'N';
+               :
+      FNativeFieldType := 'N'; //numerical
     ftDate     :
       FNativeFieldType := 'D'; //date
     ftMemo     :