Google News
logo
SQLite - Interview Questions
Mention what are the SQLite storage classes?
SQLite storage classes include
 
* Null : The value is a NULL value
* Integer : The value is a signed integer (1,2,3, etc.)
* Real : The value is a floating point value, stored as an 8 byte IEEE floating point number
* Text : The value is a text string, stored using the database encoding ( UTF-8, UTF-16BE)
* BLOB (Binary Large Object) : The value is a blob of data, exactly stored as it was input
Advertisement