Enumeration Casegrdb 7.2.0GRDB
double(_:)
The REAL storage class, wrapping a Double.
case double(Double)
The REAL storage class, wrapping a Double.
case double(Double)
import GRDB
A toolkit for SQLite databases, with a focus on application development
@frozen enum Storage
A value stored in a database table, with its exact SQLite storage (NULL, INTEGER, REAL, TEXT, BLOB).
struct DatabaseValue
A value stored in a database table.
@frozen struct Double
A double-precision, floating-point value type.
case null
The NULL storage class.
case int64(Int64)
The INTEGER storage class, wrapping an Int64.
case string(String)
The TEXT storage class, wrapping a String.
case blob(Data)
The BLOB storage class, wrapping Data.