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