Storage

public enum Storage

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

  • The INTEGER storage class, wrapping an Int64.

    Declaration

    Swift

    case int64(Int64)
  • The REAL storage class, wrapping a Double.

    Declaration

    Swift

    case double(Double)
  • The TEXT storage class, wrapping a String.

    Declaration

    Swift

    case string(String)
  • The BLOB storage class, wrapping Data.

    Declaration

    Swift

    case blob(Data)