FieldTypeDb enum

Defines the type of the value of a column of a table in a database. SQLite does not have a separate Boolean storage class. Instead, Boolean values are stored as integers 0 (false) and 1 (true).

Inheritance

Constructors

FieldTypeDb()
const

Values

integer → const FieldTypeDb

The value is a signed integer, stored in 0, 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value.

real → const FieldTypeDb

The value is a floating point value, stored as an 8-byte IEEE floating point number.

text → const FieldTypeDb

The value is a text string, stored using the database encoding (UTF-8, UTF-16BE or UTF-16LE).

blob → const FieldTypeDb

The value is a blob of data, stored exactly as it was input.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<FieldTypeDb>
A constant List of the values in this enum, in order of their declaration.