Storage

An SQLite storage (NULL, INTEGER, REAL, TEXT, BLOB).

  • The NULL storage class.

  • The INTEGER storage class, wrapping an Int64.

  • The REAL storage class, wrapping a Double.

  • The TEXT storage class, wrapping a String.

  • The BLOB storage class, wrapping Data.

  • Returns Int64, Double, String, Data or nil.

  • Return true if the storages are identical.

    Unlike DatabaseValue equality that considers the integer 1 to be equal to the 1.0 double (as SQLite does), int64 and double storages are never equal.