Module ydb_unofficial::sqlx::prelude
source · Available on crate feature
sqlx only.Re-exports
pub use super::types::Date;pub use super::types::Datetime;pub use super::types::Timestamp;pub use super::types::Interval;pub use super::connection::*;pub use super::database::*;pub use super::entities::*;pub use super::statement::*;pub use crate::error::*;
Modules
Structs
- A future that resolves when the pool is closed.
- An asynchronous pool of SQLx database connections.
- A connection managed by a
Pool. - Metadata for the connection being processed by a
PoolOptionscallback. - Configuration options for
Pool.
Enums
Traits
- Represents a single database connection.
- A type that contains or can provide a database connection to use for executing queries against the database.
- Parse a value from a string
Functions
- Make a SQL query.
- Make a SQL query that is mapped to a concrete type using
FromRow.