Browse Source

* add bigint. sqlite compat.

git-svn-id: trunk@18031 -
marco 14 years ago
parent
commit
8bb66f5e07
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/fcl-db/src/sqldb/sqlite/sqlite3conn.pp

+ 2 - 1
packages/fcl-db/src/sqldb/sqlite/sqlite3conn.pp

@@ -338,10 +338,11 @@ Type
   end;
   
 Const
-  FieldMapCount = 23;
+  FieldMapCount = 24;
   FieldMap : Array [1..FieldMapCount] of TFieldMap = (
    (n:'INT'; t: ftInteger),
    (n:'LARGEINT'; t:ftlargeInt),
+   (n:'BIGINT'; t:ftlargeInt),
    (n:'WORD'; t: ftWord),
    (n:'SMALLINT'; t: ftSmallint),
    (n:'BOOLEAN'; t: ftBoolean),