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 - Statement
Guarded - a statement guard contains a prepared postgres statement.
the guard can be dereferenced or borrowed as
Statement
which can be used for query apis. - Statement
Named - Statement
Query - a named statement with it’s query params
- Statement
Unnamed - 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
- Statement
Unnamed Bind - an unnamed statement with it’s query param binding