mirror of
https://github.com/isar/rusqlite.git
synced 2025-04-04 22:37:44 +08:00
refactor to add examples and address comments
This commit is contained in:
parent
1891c39a5f
commit
0d948205ad
@ -1,18 +1,10 @@
|
|||||||
use crate::{Connection, Result};
|
use crate::{Connection, Result};
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
||||||
impl Connection {
|
|
||||||
/// Set the default transaction behavior for the connection.
|
|
||||||
pub fn set_transaction_behavior(&mut self, behavior: TransactionBehavior) {
|
|
||||||
self.transaction_behavior = behavior;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Options for transaction behavior. See [BEGIN
|
/// Options for transaction behavior. See [BEGIN
|
||||||
/// TRANSACTION](http://www.sqlite.org/lang_transaction.html) for details.
|
/// TRANSACTION](http://www.sqlite.org/lang_transaction.html) for details.
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
|
|
||||||
pub enum TransactionBehavior {
|
pub enum TransactionBehavior {
|
||||||
/// DEFERRED means that the transaction does not actually start until the
|
/// DEFERRED means that the transaction does not actually start until the
|
||||||
/// database is first accessed.
|
/// database is first accessed.
|
||||||
@ -472,7 +464,7 @@ impl Connection {
|
|||||||
/// Will return `Err` if the underlying SQLite call fails. The specific
|
/// Will return `Err` if the underlying SQLite call fails. The specific
|
||||||
/// error returned if transactions are nested is currently unspecified.
|
/// error returned if transactions are nested is currently unspecified.
|
||||||
pub fn unchecked_transaction(&self) -> Result<Transaction<'_>> {
|
pub fn unchecked_transaction(&self) -> Result<Transaction<'_>> {
|
||||||
Transaction::new_unchecked(self, TransactionBehavior::Deferred)
|
Transaction::new_unchecked(self, self.transaction_behavior)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Begin a new savepoint with the default behavior (DEFERRED).
|
/// Begin a new savepoint with the default behavior (DEFERRED).
|
||||||
@ -526,6 +518,34 @@ impl Connection {
|
|||||||
) -> Result<TransactionState> {
|
) -> Result<TransactionState> {
|
||||||
self.db.borrow().txn_state(db_name)
|
self.db.borrow().txn_state(db_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set the default transaction behavior for the connection.
|
||||||
|
///
|
||||||
|
/// ## Note
|
||||||
|
///
|
||||||
|
/// This will only apply to transactions initiated by [`transaction`](Connection::transaction)
|
||||||
|
/// or [`unchecked_transaction`](Connection::unchecked_transaction).
|
||||||
|
///
|
||||||
|
/// ## Example
|
||||||
|
///
|
||||||
|
/// ```rust,no_run
|
||||||
|
/// # use rusqlite::{Connection, Result, TransactionBehavior};
|
||||||
|
/// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) }
|
||||||
|
/// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) }
|
||||||
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
||||||
|
/// conn.set_transaction_behavior(TransactionBehavior::Immediate);
|
||||||
|
///
|
||||||
|
/// let tx = conn.transaction()?;
|
||||||
|
///
|
||||||
|
/// do_queries_part_1(&tx)?; // tx causes rollback if this fails
|
||||||
|
/// do_queries_part_2(&tx)?; // tx causes rollback if this fails
|
||||||
|
///
|
||||||
|
/// tx.commit()
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
pub fn set_transaction_behavior(&mut self, behavior: TransactionBehavior) {
|
||||||
|
self.transaction_behavior = behavior;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user