|
|
|
|
|
by tyingq
672 days ago
|
|
Yes, it's signed...https://www.sqlite.org/datatype3.html Each value stored in an SQLite database (or manipulated by the database engine) has one of the following storage classes:
# some omitted...
INTEGER. The value is a signed integer, stored in 0, 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.
|
|