I want to create a table with the column type Long instead of Integer. Is it possible?
Long
Integer
From the SQLite docs
INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.
Since long is 8 byte and INTEGER can also save values of 8 bytes, you can use INTEGER.
long
INTEGER
2.1m questions
2.1m answers
60 comments
57.0k users