number - (default) always return Number type (max: 2^53 - 1)
Precision is lost when selecting greater numbers from SQLite
bigint - always return BigInt type (max: 2^63 - 1) for all numbers from SQLite
(inlcuding lastID from WRITE statements)
mixed - use BigInt and Number types depending on the value size
Support to SQLite 64bit integer
number - (default) always return Number type (max: 2^53 - 1) Precision is lost when selecting greater numbers from SQLite bigint - always return BigInt type (max: 2^63 - 1) for all numbers from SQLite (inlcuding
lastIDfrom WRITE statements) mixed - use BigInt and Number types depending on the value size