fcl-db: sqlite: map MONEY to ftCurrency (extend compatibilty with f.e. PostgreSQL or MS SQL)

git-svn-id: trunk@24399 -
This commit is contained in:
lacak 2013-05-01 08:58:35 +00:00
parent 8c91cddfc8
commit 992ae091b5

View File

@ -374,7 +374,7 @@ Type
end;
Const
FieldMapCount = 26;
FieldMapCount = 27;
FieldMap : Array [1..FieldMapCount] of TFieldMap = (
(n:'INT'; t: ftInteger),
(n:'LARGEINT'; t:ftlargeInt),
@ -390,6 +390,7 @@ Const
(n:'DATE'; t: ftDate),
(n:'TIME'; t: ftTime),
(n:'CURRENCY'; t: ftCurrency),
(n:'MONEY'; t: ftCurrency),
(n:'VARCHAR'; t: ftString),
(n:'CHAR'; t: ftFixedChar),
(n:'NUMERIC'; t: ftBCD),