Sfoglia il codice sorgente

* add bigint. sqlite compat.

git-svn-id: trunk@18031 -
marco 14 anni fa
parent
commit
8bb66f5e07
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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),