diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-01-16 21:12:08 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-01-16 21:12:08 (GMT) |
commit | 52ac5b1b340335f56ceb599dba63164a26f10b10 (patch) | |
tree | 275104896dffa65e7887284857fa8fed831e9ea8 /src/common | |
parent | 2ddb5c26af896b10517a89abf0c9498c598b7697 (diff) |
Changed the display of a segment containing the value of an immediate.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/sqlite.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/sqlite.h b/src/common/sqlite.h index 26dbd33..2036589 100644 --- a/src/common/sqlite.h +++ b/src/common/sqlite.h @@ -31,8 +31,9 @@ /* Type pour les insertions brutes */ -#define SQLITE_RAW 0 -#define SQLITE_INT64 10 +#define SQLITE_RAW 0 /* En dur dans une requête */ +#define SQLITE_INT64 10 /* Entier sur 64 bits */ +#define SQLITE_NATIVE 11 /* Déterminé par la base */ /* Description des champs et de leur valeur associée */ |