Expand description
Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Modules§
- Generic database driver with the specific driver selected at runtime.
- Types and traits for passing arguments to SQL queries.
- Traits to represent a database driver.
- Provides
Decodefor decoding values from the database. - Provides
Encodefor encoding values for the database. - Types for working with errors produced by SQLx.
- mssql
mssqlMicrosoft SQL (MSSQL) database driver. - mysql
mysqlMySQL database driver. - Provides the connection pool for asynchronous SQLx connections.
- postgres
postgresPostgreSQL database driver. - Runtime query-builder API.
- sqlite
sqliteSQLite database driver. - Conversions between Rust and SQL types.
Enums§
- The enum
Eitherwith variantsLeftandRightis a general purpose sum type with two cases.