fcl-db: cosmetic

git-svn-id: trunk@26973 -
This commit is contained in:
reiniero 2014-03-06 15:10:11 +00:00
parent 3478ca4672
commit 7f22ae17ff

View File

@ -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 :