Expand description
Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Modules§
- acquire
- any
( postgresormysqlormssqlorsqliteorodbc) andany - 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
Decodefor decoding values from the database. - describe
- encode
- Provides
Encodefor encoding values for the database. - error
- Types for working with errors produced by SQLx.
- executor
- from_
row - migrate
migrate - mssql
mssql - Microsoft SQL (MSSQL) database driver.
- mysql
mysql - MySQL database driver.
- odbc
odbc - ODBC database driver (via
odbc-api). - 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
- testing
migrate - transaction
- type_
info - types
- Conversions between Rust and SQL types.
- value
Macros§
Enums§
- Either
- The enum
Eitherwith variantsLeftandRightis a general purpose sum type with two cases.