Esempio n. 1
0
        public int UpdateData(string strSQL)
        {
            int i = 0;

            try
            {
                using (CommonDal Access = new CommonDal(_dct))
                {
                    i = Access.ExecuteParameterizedSql(strSQL, model.paramList);
                }
            }
            catch (Exception ex)
            {
                i = 0;
                this._infomation = ex.Message;
            }
            return(i);
        }