Example #1
0
 static void cnn_Commit(object sender, CommitEventArgs e)
 {
 }
 private int CommitCallback(IntPtr parg)
 {
   CommitEventArgs e = new CommitEventArgs();
   _commitHandler(this, e);
   return (e.AbortTransaction == true) ? 1 : 0;
 }
Example #3
0
 void _SQLiteConn_Commit(object sender, CommitEventArgs e)
 {
     this._IsRunTrans = false;
 }