Expand description
Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Modules§
- acquire
- any
- Generic database driver with the specific driver selected at runtime.
- arguments
- Types and traits for passing arguments to SQL queries.
- column
- connection
- database
- Traits to represent a database driver.
- decode
- Provides
Decode
for decoding values from the database. - describe
- encode
- Provides
Encode
for encoding values for the database. - error
- Types for working with errors produced by SQLx.
- executor
- ext
- from_
row - io
- logger
- migrate
- mssql
mssql
- Microsoft SQL (MSSQL) database driver.
- mysql
mysql
- MySQL database driver.
- net
- pool
- Provides the connection pool for asynchronous SQLx connections.
- postgres
postgres
- PostgreSQL database driver.
- query
- query_
as - query_
builder - Runtime query-builder API.
- query_
scalar - row
- sqlite
sqlite
- SQLite database driver.
- statement
- transaction
- type_
info - types
- Conversions between Rust and SQL types.
- value
Enums§
- Either
- The enum
Either
with variantsLeft
andRight
is a general purpose sum type with two cases.