Example #1
0
 public void WalCheckPoint(string dbName, WalCheckPointMode mode, out int nLog, out int nCkpt)
 {
     if (disposed)
     {
         ThrowHelper.ThrowObjectDisposedException(this.GetType().FullName);
     }
     db.WalCheckPoint(dbName, mode, out nLog, out nCkpt);
 }
Example #2
0
        public void WalCheckPoint(string dbName, WalCheckPointMode mode, out int nLog, out int nCkpt)
        {
            int nLogOut;
            int nCkptOut;

            nLog  = this.GetOutParameterValue <int>(x => x.WalCheckPoint(dbName, mode, out nLogOut, out nCkptOut), 2);
            nCkpt = this.GetOutParameterValue <int>(x => x.WalCheckPoint(dbName, mode, out nLogOut, out nCkptOut), 3);
            this.Apply(x => x.WalCheckPoint(dbName, mode, out nLogOut, out nCkptOut));
        }