drizzle 0.1.16

A type-safe SQL query builder for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Re-exports of the shared `DrizzleBuilder` / `DrizzleOnConflictBuilder`
//! under the `TransactionBuilder` / `TransactionOnConflictBuilder` names.
//!
//! See `src/transaction/sqlite/typestate.rs` for the parallel SQLite
//! re-export module. The query-builder typestate machinery used to be
//! duplicated here for Postgres transactions; it now lives once on the
//! shared [`crate::builder::postgres::common::DrizzleBuilder`], keyed on
//! an opaque `Runner` parameter that each driver fills in via a type
//! alias.

pub use crate::builder::postgres::common::{
    DrizzleBuilder as TransactionBuilder, DrizzleOnConflictBuilder as TransactionOnConflictBuilder,
};