grafbase-sdk 0.23.1

An SDK to implement extensions for the Grafbase Gateway
Documentation
1
2
3
4
5
6
7
8
9
10
//! Postgres connection pooling and transaction management.

mod connection;
mod pool;
mod query;
pub mod types;

pub use connection::{Connection, ConnectionLike, Transaction};
pub use pool::{Pool, PoolOptions};
pub use query::{ColumnIterator, Query, QueryBuilder, RowValue};