Expand description
PostgreSQL backend glue.
Submodules mirror the SQLite/Turso/LibSQL structure for consistency:
config: connection configuration and pool setupparams: parameter conversion between middleware andPostgreSQLtypesquery: result extraction and buildingexecutor: database operation execution
Re-exports§
pub use config::PgConfig;pub use config::PostgresOptions;pub use config::PostgresOptionsBuilder;pub use executor::execute_batch;pub use executor::execute_dml;pub use executor::execute_select;pub use params::Params;pub use query::build_result_set;pub use query::build_result_set_from_rows;pub use query::execute_dml_on_client;pub use query::execute_query_on_client;pub use transaction::Prepared;pub use transaction::Tx;pub use transaction::begin_transaction;pub use typed::Idle as TypedIdle;pub use typed::InTx as TypedInTx;pub use typed::PgConnection as TypedPgConnection;pub use typed::PgManager;