Yup, Sqlite support following storage classes. Each value stored in an SQLite database has one of the following storage classes −
1NULL The value is a NULL value. 2INTEGER The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value. 3REAL The value is a floating point value, stored as an 8-byte IEEE floating point number. 4TEXT The value is a text string, stored using the database encoding (UTF-8, UTF-16BE or UTF-16LE) 5BLOB The value is a blob of data, stored exactly as it was input.