Expand description
Trait interface for database drivers and helpers for bind value resolution.
Driver crates implement ComposerConnection (sync) or
ComposerConnectionAsync (async) for their connection types.
This module contains no database dependencies — only the interface.
Traits§
- Composer
Connection - Trait for synchronous database drivers that can compose and prepare SQL.
- Composer
Connection Async - Async version of
ComposerConnectionfor async database drivers (e.g. tokio-postgres, mysql_async).
Functions§
- resolve_
values - Given a
ComposedSqlwith ordered bind param names and a map of named values, produce the ordered value vector matching placeholder order.