You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQLite is flexibly typed, a philosophy which doesn't harmonize well with Rust's preference for strong types.
Despite this flexible typing, SQLite provides access to the underlying type of result columns of individual rows, and rusqlite exposes this via, for example:
SQLite is flexibly typed, a philosophy which doesn't harmonize well with Rust's preference for strong types.
Despite this flexible typing, SQLite provides access to the underlying type of result columns of individual rows, and
rusqlite
exposes this via, for example:rusqlite::Row::columns()
rusqlite::Column::decl_type()
rusqlite::Row::get_raw()
rusqlite::types::ValueRef
These can be used to enforce additional typechecking at runtime, instead of the usual behavior of coercing types.
The text was updated successfully, but these errors were encountered: