Exemple #1
0
        //信息加载
        public DataTable LoaData(string table, string strWhere, string order, string asc, ref int totalProperty, int start, int limit)
        {
            string  load = "load";
            JObject json = null;
            string  sql  = sc.get_base_sql(load, table, json, "") + strWhere;

            sql = Extension.GetPageSql2(sql, "t1.code", "", ref totalProperty, start, limit);
            DataTable loDataSet = DBMgrBase.GetDataTable(sql);

            return(loDataSet);
        }