Module statement

Source
Expand description

Statement module is mostly copy/paste from tokio_postgres::statement

Structs§

Statement
named prepared postgres statement without information of which Client it belongs to and lifetime cycle management
StatementGuarded
a statement guard contains a prepared postgres statement. the guard can be dereferenced or borrowed as Statement which can be used for query apis.
StatementNamed
StatementQuery
a named statement with it’s query params
StatementUnnamed
an unnamed statement that don’t need to be prepared separately it’s bundled together with database query it associated that can be processed with at least one-round-trip to database
StatementUnnamedBind
an unnamed statement with it’s query param binding