mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-28 03:53:08 +00:00
* WIP rt refactors * refactor: break drivers out into separate crates also cleans up significant technical debt
71 lines
1.8 KiB
Rust
71 lines
1.8 KiB
Rust
//! **PostgreSQL** database driver.
|
|
|
|
#[macro_use]
|
|
extern crate sqlx_core;
|
|
|
|
use crate::executor::Executor;
|
|
|
|
mod advisory_lock;
|
|
mod arguments;
|
|
mod column;
|
|
mod connection;
|
|
mod copy;
|
|
mod database;
|
|
mod error;
|
|
mod io;
|
|
mod listener;
|
|
mod message;
|
|
mod options;
|
|
mod query_result;
|
|
mod row;
|
|
mod statement;
|
|
mod transaction;
|
|
mod type_info;
|
|
pub mod types;
|
|
mod value;
|
|
|
|
#[cfg(feature = "any")]
|
|
pub mod any;
|
|
|
|
#[cfg(feature = "migrate")]
|
|
mod migrate;
|
|
|
|
#[cfg(feature = "migrate")]
|
|
mod testing;
|
|
|
|
pub(crate) use sqlx_core::driver_prelude::*;
|
|
|
|
pub use advisory_lock::{PgAdvisoryLock, PgAdvisoryLockGuard, PgAdvisoryLockKey};
|
|
pub use arguments::{PgArgumentBuffer, PgArguments};
|
|
pub use column::PgColumn;
|
|
pub use connection::PgConnection;
|
|
pub use copy::PgCopyIn;
|
|
pub use database::Postgres;
|
|
pub use error::{PgDatabaseError, PgErrorPosition};
|
|
pub use listener::{PgListener, PgNotification};
|
|
pub use message::PgSeverity;
|
|
pub use options::{PgConnectOptions, PgSslMode};
|
|
pub use query_result::PgQueryResult;
|
|
pub use row::PgRow;
|
|
pub use statement::PgStatement;
|
|
pub use transaction::PgTransactionManager;
|
|
pub use type_info::{PgTypeInfo, PgTypeKind};
|
|
pub use types::PgHasArrayType;
|
|
pub use value::{PgValue, PgValueFormat, PgValueRef};
|
|
|
|
/// An alias for [`Pool`][crate::pool::Pool], specialized for Postgres.
|
|
pub type PgPool = crate::pool::Pool<Postgres>;
|
|
|
|
/// An alias for [`PoolOptions`][crate::pool::PoolOptions], specialized for Postgres.
|
|
pub type PgPoolOptions = crate::pool::PoolOptions<Postgres>;
|
|
|
|
/// An alias for [`Executor<'_, Database = Postgres>`][Executor].
|
|
pub trait PgExecutor<'c>: Executor<'c, Database = Postgres> {}
|
|
impl<'c, T: Executor<'c, Database = Postgres>> PgExecutor<'c> for T {}
|
|
|
|
impl_into_arguments_for_arguments!(PgArguments);
|
|
impl_acquire!(Postgres, PgConnection);
|
|
impl_column_index_for_row!(PgRow);
|
|
impl_column_index_for_statement!(PgStatement);
|
|
impl_encode_for_option!(Postgres);
|