• Home
  • Raw
  • Download

Lines Matching refs:execute_batch

125         conn.execute_batch(query).map(move |()| Transaction {  in new_unchecked()
192 self.conn.execute_batch("COMMIT")?; in commit_()
204 self.conn.execute_batch("ROLLBACK")?; in rollback_()
253 conn.execute_batch(&format!("SAVEPOINT {name}")) in with_name_()
314 self.conn.execute_batch(&format!("RELEASE {}", self.name))?; in commit_()
328 .execute_batch(&format!("ROLLBACK TO {}", self.name)) in rollback()
558 db.execute_batch("CREATE TABLE foo (x INTEGER)")?; in checked_memory_handle()
567 tx.execute_batch("INSERT INTO foo VALUES(1)")?; in test_drop()
572 tx.execute_batch("INSERT INTO foo VALUES(2)")?; in test_drop()
604 tx.execute_batch("INSERT INTO foo VALUES(1)")?; in test_unchecked_nesting()
609 tx.execute_batch("INSERT INTO foo VALUES(1)")?; in test_unchecked_nesting()
624 sp.execute_batch("INSERT INTO foo VALUES(1)")?; in test_explicit_rollback_commit()
626 sp.execute_batch("INSERT INTO foo VALUES(2)")?; in test_explicit_rollback_commit()
633 tx.execute_batch("INSERT INTO foo VALUES(4)")?; in test_explicit_rollback_commit()
648 tx.execute_batch("INSERT INTO foo VALUES(1)")?; in test_savepoint()
653 sp1.execute_batch("INSERT INTO foo VALUES(2)")?; in test_savepoint()
658 sp2.execute_batch("INSERT INTO foo VALUES(4)")?; in test_savepoint()
663 sp3.execute_batch("INSERT INTO foo VALUES(8)")?; in test_savepoint()
723 …db.execute_batch("CREATE TABLE r(n INTEGER PRIMARY KEY NOT NULL); CREATE TABLE f(n REFERENCES r(n)… in test_savepoint_release_error()
797 db.execute_batch("BEGIN")?; in txn_state()
803 db.execute_batch("ROLLBACK")?; in txn_state()
812 db.execute_batch("CREATE TABLE t(i UNIQUE);")?; in auto_commit()