Struct sea_orm::Transaction
source · pub struct Transaction { /* private fields */ }Available on crate feature
mock only.Expand description
Defines a database transaction as it holds a Vec<Statement>
Implementations§
source§impl Transaction
impl Transaction
sourcepub fn from_sql_and_values<I>(
db_backend: DbBackend,
sql: &str,
values: I
) -> Selfwhere
I: IntoIterator<Item = Value>,
pub fn from_sql_and_values<I>( db_backend: DbBackend, sql: &str, values: I ) -> Selfwhere I: IntoIterator<Item = Value>,
Get the Values from s raw SQL statement depending on the DatabaseBackend
sourcepub fn many<I>(stmts: I) -> Selfwhere
I: IntoIterator<Item = Statement>,
pub fn many<I>(stmts: I) -> Selfwhere I: IntoIterator<Item = Statement>,
Create a Transaction with many statements
sourcepub fn wrap<I>(stmts: I) -> Vec<Self>where
I: IntoIterator<Item = Statement>,
pub fn wrap<I>(stmts: I) -> Vec<Self>where I: IntoIterator<Item = Statement>,
Wrap each Statement as a single-statement Transaction
Trait Implementations§
source§impl Clone for Transaction
impl Clone for Transaction
source§fn clone(&self) -> Transaction
fn clone(&self) -> Transaction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for Transaction
impl Debug for Transaction
source§impl PartialEq<Transaction> for Transaction
impl PartialEq<Transaction> for Transaction
source§fn eq(&self, other: &Transaction) -> bool
fn eq(&self, other: &Transaction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.