I am completely new to SQLite (actually 5 minutes ago), but I know several Oracle and MySql resources.
Question I am trying to find out the lengths of each of the data types supported by SQLite, such as the differences between bigint and smallint. I searched the SQLite documentation (talking only about proximity, only ), SO streams, google ... and found nothing.
My guess . I revised the SQL92 specifications a bit, which talks about data types and its relationships, but not about its lengths, which is pretty obvious. However, I came up with the specifications of Oracle and MySql datatypes, and the indicated lengths are in most cases identical for integers. Should I assume that SQLite uses the same length?
Beyond the question : Am I missing something about SQLite docs? Or am I missing something about SQL in general? Asking for this because I cannot understand why SQLite docs do not specify something basic like datatypes lengths. It just doesn't make sense to me! Although I'm sure there is a simple command for finding lengths ... but why not write them down in documents?
Thanks!
source share