1.

Mention What Are The Sqlite Storage Classes?

Answer»

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

SQLite storage classes include :



Discussion

No Comment Found