示例#1
0
        /// <summary>
        /// 依SQL指令執行
        /// </summary>
        public int _DB_Execute(string strSql)
        {
            try
            {
                return(DBC.ExecCmd(strSql));
            }
            catch (Exception e)
            {
                //LogInfo("_DB_Execute", e + ":" + strSql);
                throw e;

                //return 0; //(再做參數控制出庫/DEV環境)
            }
        }