Lines Matching refs:execute_batch
123 conn.execute_batch(query).map(move |_| Transaction { in new_unchecked()
183 self.conn.execute_batch("COMMIT")?; in commit_()
193 self.conn.execute_batch("ROLLBACK")?; in rollback_()
241 conn.execute_batch(&format!("SAVEPOINT {}", name)) in with_depth_and_name()
294 self.conn.execute_batch(&format!("RELEASE {}", self.name))?; in commit_()
307 .execute_batch(&format!("ROLLBACK TO {}", self.name)) in rollback()
474 db.execute_batch("CREATE TABLE foo (x INTEGER)").unwrap(); in checked_memory_handle()
483 tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); in test_drop()
488 tx.execute_batch("INSERT INTO foo VALUES(2)").unwrap(); in test_drop()
523 tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); in test_unchecked_nesting()
528 tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); in test_unchecked_nesting()
546 sp.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); in test_explicit_rollback_commit()
548 sp.execute_batch("INSERT INTO foo VALUES(2)").unwrap(); in test_explicit_rollback_commit()
555 tx.execute_batch("INSERT INTO foo VALUES(4)").unwrap(); in test_explicit_rollback_commit()
573 tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); in test_savepoint()
578 sp1.execute_batch("INSERT INTO foo VALUES(2)").unwrap(); in test_savepoint()
583 sp2.execute_batch("INSERT INTO foo VALUES(4)").unwrap(); in test_savepoint()
588 sp3.execute_batch("INSERT INTO foo VALUES(8)").unwrap(); in test_savepoint()