[][src]Module sqlx::sqlite::types

This is supported on crate feature sqlite only.

Conversions between Rust and SQLite types.

Types

Rust typeSQLite type(s)
boolBOOLEAN
i16INTEGER
i32INTEGER
i64BIGINT, INT8
f32REAL
f64REAL
&str, StringTEXT
&[u8], Vec<u8>BLOB

chrono

Requires the chrono Cargo feature flag.

Rust typeSqlite type(s)
chrono::NaiveDateTimeDATETIME
chrono::DateTime<Utc>DATETIME
chrono::DateTime<Local>DATETIME

Nullable

In addition, Option<T> is supported where T implements Type. An Option<T> represents a potentially NULL value from SQLite.