glite/value

Types

SQLite value types. SQLite has 5 storage classes.

pub type Value {
  Null
  Integer(Int)
  Real(Float)
  Text(String)
  Blob(BitArray)
}

Constructors

  • Null

    NULL value

  • Integer(Int)

    64-bit signed integer

  • Real(Float)

    64-bit IEEE floating point

  • Text(String)

    UTF-8 text string

  • Blob(BitArray)

    Binary data

Search Document