Skip to main content

DatabaseTransaction

Struct DatabaseTransaction 

Source
pub struct DatabaseTransaction { /* private fields */ }
Expand description

A live database transaction.

Obtain one with TransactionTrait::begin (manual commit/rollback) or TransactionTrait::transaction (auto commit on Ok, auto rollback on Err). Like DatabaseConnection it implements ConnectionTrait, so SeaORM’s query and mutation methods work against it transparently. Calling begin on a transaction starts a nested transaction via SAVEPOINT.

Implementations§

Source§

impl DatabaseTransaction

Source

pub fn transaction<F, T, E>( &self, callback: F, ) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. Otherwise, the transaction will be committed.

Source

pub fn transaction_with_config<F, T, E>( &self, callback: F, isolation_level: Option<IsolationLevel>, access_mode: Option<AccessMode>, ) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction with isolation level and/or access mode. If the function returns an error, the transaction will be rolled back. Otherwise, the transaction will be committed.

Source

pub fn commit(self) -> Result<(), DbErr>

Commit a transaction

Source

pub fn rollback(self) -> Result<(), DbErr>

Rolls back a transaction explicitly

Trait Implementations§

Source§

impl ConnectionTrait for DatabaseTransaction

Source§

fn get_database_backend(&self) -> DbBackend

Get the database backend for the connection. This depends on feature flags enabled.
Source§

fn execute_raw(&self, stmt: Statement) -> Result<ExecResult, DbErr>

Execute a Statement
Source§

fn execute_unprepared(&self, sql: &str) -> Result<ExecResult, DbErr>

Execute a unprepared Statement
Source§

fn query_one_raw(&self, stmt: Statement) -> Result<Option<QueryResult>, DbErr>

Execute a Statement and return a single row of QueryResult
Source§

fn query_all_raw(&self, stmt: Statement) -> Result<Vec<QueryResult>, DbErr>

Execute a Statement and return a vector of QueryResult
Source§

fn execute<S: StatementBuilder>(&self, stmt: &S) -> Result<ExecResult, DbErr>

Source§

fn query_one<S: StatementBuilder>( &self, stmt: &S, ) -> Result<Option<QueryResult>, DbErr>

Execute a StatementBuilder and return a single row of QueryResult
Source§

fn query_all<S: StatementBuilder>( &self, stmt: &S, ) -> Result<Vec<QueryResult>, DbErr>

Execute a StatementBuilder and return a vector of QueryResult
Source§

fn support_returning(&self) -> bool

Check if the connection supports RETURNING syntax on insert and update
Source§

fn is_mock_connection(&self) -> bool

Check if the connection is a test connection for the Mock database
Source§

impl Debug for DatabaseTransaction

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for DatabaseTransaction

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl<'c> From<&'c DatabaseTransaction> for DatabaseExecutor<'c>

Source§

fn from(trans: &'c DatabaseTransaction) -> Self

Converts to this type from the input type.
Source§

impl<'c> IntoDatabaseExecutor<'c> for &'c DatabaseTransaction

Source§

impl IntoDatabaseExecutor<'static> for DatabaseTransaction

Source§

impl StreamTrait for DatabaseTransaction

Available on crate feature stream only.
Source§

type Stream<'a> = TransactionStream<'a>

Create a stream for the QueryResult
Source§

fn get_database_backend(&self) -> DbBackend

Get the database backend for the connection. This depends on feature flags enabled.
Source§

fn stream_raw<'a>(&'a self, stmt: Statement) -> Result<Self::Stream<'a>, DbErr>

Execute a Statement and return a stream of results
Source§

fn stream<'a, S: StatementBuilder>( &'a self, stmt: &S, ) -> Result<Self::Stream<'a>, DbErr>

Execute a StatementBuilder and return a stream of results
Source§

impl TransactionSession for DatabaseTransaction

Source§

fn commit(self) -> Result<(), DbErr>

Commit a transaction
Source§

fn rollback(self) -> Result<(), DbErr>

Rolls back a transaction explicitly
Source§

impl TransactionTrait for DatabaseTransaction

Source§

fn transaction<F, T, E>(&self, _callback: F) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. Otherwise, the transaction will be committed.

Source§

fn transaction_with_config<F, T, E>( &self, _callback: F, isolation_level: Option<IsolationLevel>, access_mode: Option<AccessMode>, ) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. Otherwise, the transaction will be committed.

Source§

type Transaction = DatabaseTransaction

The concrete type for the transaction
Source§

fn begin(&self) -> Result<DatabaseTransaction, DbErr>

Execute SQL BEGIN transaction. Returns a Transaction that can be committed or rolled back
Source§

fn begin_with_config( &self, isolation_level: Option<IsolationLevel>, access_mode: Option<AccessMode>, ) -> Result<DatabaseTransaction, DbErr>

Execute SQL BEGIN transaction with isolation level and/or access mode. Returns a Transaction that can be committed or rolled back
Source§

fn begin_with_options( &self, options: TransactionOptions, ) -> Result<DatabaseTransaction, DbErr>

Execute SQL BEGIN transaction with isolation level and/or access mode. Returns a Transaction that can be committed or rolled back

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

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

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more