pub struct TransactionBuilder<'a, C> { /* private fields */ }
Available on crate feature postgres_backend only.
Expand description

Used to build a transaction, specifying additional details.

This struct is returned by .build_transaction. See the documentation for methods on this struct for usage examples. See the PostgreSQL documentation for SET TRANSACTION for details on the behavior of each option.

Implementations§

source§

impl<'a, C> TransactionBuilder<'a, C>where C: Connection<Backend = Pg, TransactionManager = AnsiTransactionManager>,

source

pub fn read_only(self) -> Self

Makes the transaction READ ONLY

Example
conn.build_transaction()
    .read_only()
    .run::<_, diesel::result::Error, _>(|conn| {
        let read_attempt = users.select(name).load::<String>(conn);
        assert!(read_attempt.is_ok());

        let write_attempt = diesel::insert_into(users)
            .values(name.eq("Ruby"))
            .execute(conn);
        assert!(write_attempt.is_err());

        Ok(())
    })?;
source

pub fn read_write(self) -> Self

Makes the transaction READ WRITE

This is the default, unless you’ve changed the default_transaction_read_only configuration parameter.

Example
conn.build_transaction()
    .read_write()
    .run(|conn| {
        let read_attempt = users.select(name).load::<String>(conn);
        assert!(read_attempt.is_ok());

        let write_attempt = diesel::insert_into(users)
            .values(name.eq("Ruby"))
            .execute(conn);
        assert!(write_attempt.is_ok());

        Ok(())
    })
source

pub fn deferrable(self) -> Self

Makes the transaction DEFERRABLE

Example
conn.build_transaction()
    .deferrable()
    .run(|conn| Ok(()))
source

pub fn not_deferrable(self) -> Self

Makes the transaction NOT DEFERRABLE

This is the default, unless you’ve changed the default_transaction_deferrable configuration parameter.

Example
conn.build_transaction()
    .not_deferrable()
    .run(|conn| Ok(()))
source

pub fn read_committed(self) -> Self

Makes the transaction ISOLATION LEVEL READ COMMITTED

This is the default, unless you’ve changed the default_transaction_isolation_level configuration parameter.

Example
conn.build_transaction()
    .read_committed()
    .run(|conn| Ok(()))
source

pub fn repeatable_read(self) -> Self

Makes the transaction ISOLATION LEVEL REPEATABLE READ

Example
conn.build_transaction()
    .repeatable_read()
    .run(|conn| Ok(()))
source

pub fn serializable(self) -> Self

Makes the transaction ISOLATION LEVEL SERIALIZABLE

Example
conn.build_transaction()
    .serializable()
    .run(|conn| Ok(()))
source

pub fn run<T, E, F>(&mut self, f: F) -> Result<T, E>where F: FnOnce(&mut C) -> Result<T, E>, E: From<Error>,

Runs the given function inside of the transaction with the parameters given to this builder.

This function executes the provided closure f inside a database transaction. If there is already an open transaction for the current connection it will return an error. The connection is committed if the closure returns Ok(_), it will be rolled back if it returns Err(_). For both cases the original result value will be returned from this function.

If the transaction fails to commit and requires a rollback according to Postgres, (e.g. serialization failure) a rollback will be attempted. If the rollback fails, the error will be returned in a Error::RollbackErrorOnCommit, from which you will be able to extract both the original commit error and the rollback error. In addition, the connection will be considered broken as it contains a uncommitted unabortable open transaction. Any further interaction with the transaction system will result in an returned error in this case.

Auto Trait Implementations§

§

impl<'a, C> RefUnwindSafe for TransactionBuilder<'a, C>where C: RefUnwindSafe,

§

impl<'a, C> Send for TransactionBuilder<'a, C>where C: Send,

§

impl<'a, C> Sync for TransactionBuilder<'a, C>where C: Sync,

§

impl<'a, C> Unpin for TransactionBuilder<'a, C>

§

impl<'a, C> !UnwindSafe for TransactionBuilder<'a, C>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V