Ejemplo n.º 1
0
        /// <summary>
        /// Commit Transaction
        /// 提交事务
        /// </summary>
        public void CommitTransaction()
        {
            if (database.CheckStatus() == false)
            {
                throw new Exception("Database not open,call Open()");
            }

            database.CommitTransaction();
        }