1.

Mention What Are The Sql Lite Storage Classes?

Answer»

SQL lite 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.

SQL lite storage classes include :



Discussion

No Comment Found