SQLite Forum

Integer becomes blob
Login
As can be seen in the [doc on data-types](https://www.sqlite.org/datatype3.html), section 3.1, INT and INTEGER in the putative [a] type position of a create table statement mean the same thing. Also, SQLite is agnostic as the case of keywords, so the above two code fragments are equivalent as far as the parser is concerned.

\[a. I say "putative" because dark-clumps intended to be interpreted as a typename can become something else to the parser. That is because the typename is optional for a column definition in SQLite.) \]