Struct rusqlite::Transaction
[−]
[src]
pub struct Transaction<'conn> { /* fields omitted */ }
Represents a transaction on a database connection.
Note
Transactions will roll back by default. Use commit
method to explicitly commit the
transaction, or use set_drop_behavior
to change what happens when the transaction
is dropped.
Example
fn perform_queries(conn: &mut Connection) -> Result<()> { let tx = try!(conn.transaction()); try!(do_queries_part_1(&tx)); // tx causes rollback if this fails try!(do_queries_part_2(&tx)); // tx causes rollback if this fails tx.commit() }
Methods
impl<'conn> Transaction<'conn>
[src]
pub fn new(
conn: &mut Connection,
behavior: TransactionBehavior
) -> Result<Transaction>
[src]
conn: &mut Connection,
behavior: TransactionBehavior
) -> Result<Transaction>
Begin a new transaction. Cannot be nested; see savepoint
for nested transactions.
pub fn savepoint(&mut self) -> Result<Savepoint>
[src]
Starts a new savepoint, allowing nested transactions.
Note
Just like outer level transactions, savepoint transactions rollback by default.
Example
fn perform_queries(conn: &mut Connection) -> Result<()> { let mut tx = try!(conn.transaction()); { let sp = try!(tx.savepoint()); if perform_queries_part_1_succeeds(&sp) { try!(sp.commit()); } // otherwise, sp will rollback } tx.commit() }
pub fn savepoint_with_name<T: Into<String>>(
&mut self,
name: T
) -> Result<Savepoint>
[src]
&mut self,
name: T
) -> Result<Savepoint>
Create a new savepoint with a custom savepoint name. See savepoint()
.
pub fn drop_behavior(&self) -> DropBehavior
[src]
Get the current setting for what happens to the transaction when it is dropped.
pub fn set_drop_behavior(&mut self, drop_behavior: DropBehavior)
[src]
Configure the transaction to perform the specified action when it is dropped.
pub fn commit(self) -> Result<()>
[src]
A convenience method which consumes and commits a transaction.
pub fn rollback(self) -> Result<()>
[src]
A convenience method which consumes and rolls back a transaction.
pub fn finish(self) -> Result<()>
[src]
Consumes the transaction, committing or rolling back according to the current setting
(see drop_behavior
).
Functionally equivalent to the Drop
implementation, but allows callers to see any
errors that occur.
Methods from Deref<Target = Connection>
pub fn prepare_cached<'a>(&'a self, sql: &str) -> Result<CachedStatement<'a>>
[src]
Prepare a SQL statement for execution, returning a previously prepared (but
not currently in-use) statement if one is available. The returned statement
will be cached for reuse by future calls to prepare_cached
once it is
dropped.
fn insert_new_people(conn: &Connection) -> Result<()> { { let mut stmt = try!(conn.prepare_cached("INSERT INTO People (name) VALUES (?)")); try!(stmt.execute(&[&"Joe Smith"])); } { // This will return the same underlying SQLite statement handle without // having to prepare it again. let mut stmt = try!(conn.prepare_cached("INSERT INTO People (name) VALUES (?)")); try!(stmt.execute(&[&"Bob Jones"])); } Ok(()) }
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn set_prepared_statement_cache_capacity(&self, capacity: usize)
[src]
Set the maximum number of cached prepared statements this connection will hold. By default, a connection will hold a relatively small number of cached statements. If you need more, or know that you will not use cached statements, you can set the capacity manually using this method.
pub fn flush_prepared_statement_cache(&self)
[src]
pub fn limit(&self, limit: Limit) -> i32
[src]
Returns the current value of a limit.
pub fn set_limit(&self, limit: Limit, new_val: i32) -> i32
[src]
Changes the limit to new_val
, returning the prior value of the limit.
pub fn execute_batch(&self, sql: &str) -> Result<()>
[src]
Convenience method to run multiple SQL statements (that cannot take any parameters).
Uses sqlite3_exec under the hood.
Example
fn create_tables(conn: &Connection) -> Result<()> { conn.execute_batch("BEGIN; CREATE TABLE foo(x INTEGER); CREATE TABLE bar(y TEXT); COMMIT;") }
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn execute(&self, sql: &str, params: &[&ToSql]) -> Result<c_int>
[src]
Convenience method to prepare and execute a single SQL statement.
On success, returns the number of rows that were changed or inserted or deleted (via
sqlite3_changes
).
Example
fn update_rows(conn: &Connection) { match conn.execute("UPDATE foo SET bar = 'baz' WHERE qux = ?", &[&1i32]) { Ok(updated) => println!("{} rows were updated", updated), Err(err) => println!("update failed: {}", err), } }
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn execute_named(
&self,
sql: &str,
params: &[(&str, &ToSql)]
) -> Result<c_int>
[src]
&self,
sql: &str,
params: &[(&str, &ToSql)]
) -> Result<c_int>
Convenience method to prepare and execute a single SQL statement with named parameter(s).
On success, returns the number of rows that were changed or inserted or deleted (via
sqlite3_changes
).
Example
fn insert(conn: &Connection) -> Result<i32> { conn.execute_named("INSERT INTO test (name) VALUES (:name)", &[(":name", &"one")]) }
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn last_insert_rowid(&self) -> i64
[src]
Get the SQLite rowid of the most recent successful INSERT.
Uses sqlite3_last_insert_rowid under the hood.
pub fn query_row<T, F>(&self, sql: &str, params: &[&ToSql], f: F) -> Result<T> where
F: FnOnce(&Row) -> T,
[src]
F: FnOnce(&Row) -> T,
Convenience method to execute a query that is expected to return a single row.
Example
fn preferred_locale(conn: &Connection) -> Result<String> { conn.query_row("SELECT value FROM preferences WHERE name='locale'", &[], |row| { row.get(0) }) }
If the query returns more than one row, all rows except the first are ignored.
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn query_row_named<T, F>(
&self,
sql: &str,
params: &[(&str, &ToSql)],
f: F
) -> Result<T> where
F: FnOnce(&Row) -> T,
[src]
&self,
sql: &str,
params: &[(&str, &ToSql)],
f: F
) -> Result<T> where
F: FnOnce(&Row) -> T,
Convenience method to execute a query with named parameter(s) that is expected to return a single row.
If the query returns more than one row, all rows except the first are ignored.
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn query_row_and_then<T, E, F>(
&self,
sql: &str,
params: &[&ToSql],
f: F
) -> Result<T, E> where
F: FnOnce(&Row) -> Result<T, E>,
E: From<Error>,
[src]
&self,
sql: &str,
params: &[&ToSql],
f: F
) -> Result<T, E> where
F: FnOnce(&Row) -> Result<T, E>,
E: From<Error>,
Convenience method to execute a query that is expected to return a single row,
and execute a mapping via f
on that returned row with the possibility of failure.
The Result
type of f
must implement std::convert::From<Error>
.
Example
fn preferred_locale(conn: &Connection) -> Result<String> { conn.query_row_and_then("SELECT value FROM preferences WHERE name='locale'", &[], |row| { row.get_checked(0) }) }
If the query returns more than one row, all rows except the first are ignored.
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub fn query_row_safe<T, F>(
&self,
sql: &str,
params: &[&ToSql],
f: F
) -> Result<T> where
F: FnOnce(&Row) -> T,
[src]
&self,
sql: &str,
params: &[&ToSql],
f: F
) -> Result<T> where
F: FnOnce(&Row) -> T,
: Use query_row instead
Convenience method to execute a query that is expected to return a single row.
Example
fn preferred_locale(conn: &Connection) -> Result<String> { conn.query_row_safe("SELECT value FROM preferences WHERE name='locale'", &[], |row| { row.get(0) }) }
If the query returns more than one row, all rows except the first are ignored.
Deprecated
This method should be considered deprecated. Use query_row
instead, which now
does exactly the same thing.
pub fn prepare<'a>(&'a self, sql: &str) -> Result<Statement<'a>>
[src]
Prepare a SQL statement for execution.
Example
fn insert_new_people(conn: &Connection) -> Result<()> { let mut stmt = try!(conn.prepare("INSERT INTO People (name) VALUES (?)")); try!(stmt.execute(&[&"Joe Smith"])); try!(stmt.execute(&[&"Bob Jones"])); Ok(()) }
Failure
Will return Err
if sql
cannot be converted to a C-compatible string or if the
underlying SQLite call fails.
pub unsafe fn handle(&self) -> *mut sqlite3
[src]
Get access to the underlying SQLite database connection handle.
Warning
You should not need to use this function. If you do need to, please open an issue
on the rusqlite repository and describe
your use case. This function is unsafe because it gives you raw access to the SQLite
connection, and what you do with it could impact the safety of this Connection
.
Trait Implementations
impl<'conn> Deref for Transaction<'conn>
[src]
type Target = Connection
The resulting type after dereferencing.
fn deref(&self) -> &Connection
[src]
Dereferences the value.