Esempio n. 1
0
 public static void CommitCommand(
     this System.Data.IDbConnection db)
 {
     db.Create("COMMIT;").Execute();
 }
Esempio n. 2
0
 public static void RollBackCommand(
     this System.Data.IDbConnection db)
 {
     db.Create("ROLLBACK;").Execute();
 }
Esempio n. 3
0
 public static void BeginCommand(
     this System.Data.IDbConnection db)
 {
     db.Create("BEGIN;").Execute();
 }