Example #1
0
        public static DataTable StatFlow(Hashtable hs, int pageindex, int pagesize, string OrderBy, ref int totalcount)
        {
            DataTable dt = new DataTable();

            try
            {
                //执行更新操作
                dt = FlowReportDBHelper.StatFlow(hs, pageindex, pagesize, OrderBy, ref totalcount);
            }
            catch
            {
                //输出日志
            }
            return(dt);
        }
Example #2
0
        public static DataTable StatFlow(Hashtable hs)
        {
            DataTable dt = new DataTable();

            try
            {
                //执行更新操作
                dt = FlowReportDBHelper.StatFlow(hs);
            }
            catch
            {
                //输出日志
            }
            return(dt);
        }