* Allow a size (amount of decimals) of 0 for TBCDFields

git-svn-id: trunk@10819 -
This commit is contained in:
joost 2008-04-27 16:14:04 +00:00
parent 948e71f051
commit 97fc499a48

View File

@ -2138,7 +2138,7 @@ end;
class procedure TBCDField.CheckTypeSize(AValue: Longint);
begin
If not (AValue in [1..4]) then
If not (AValue in [0..4]) then
DatabaseErrorfmt(SInvalidFieldSize,[Avalue]);
end;