예제 #1
0
        public void Checkpoint()
        {
            this.OpenWrite();

            try
            {
                _engine.Checkpoint();
            }
            finally
            {
                this.Close();
            }
        }
예제 #2
0
        public int Checkpoint()
        {
            this.OpenDatabase();

            try
            {
                return(_engine.Checkpoint());
            }
            finally
            {
                this.CloseDatabase();
            }
        }
예제 #3
0
        public void Checkpoint()
        {
            this.OpenDatabase();

            try
            {
                _engine.Checkpoint();
            }
            finally
            {
                this.CloseDatabase();
            }
        }