Module query

Source
Expand description

Facilities for running SQL queries.

The main entry points into this module are Connection::prepare, Connection::execute, and Connection::query_row.

Macros§

params
Create a Params with values of mixed types.

Structs§

Column
A single value returned from a query.
QueryResult
A row returned from a query.
Statement
A prepared statement.

Traits§

Params
Trait for collections of parameters to a query.
ToParam
Trait for types which can be passed into SQLite queries as parameters.