博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多个数据读取的两种简写方法
阅读量:5256 次
发布时间:2019-06-14

本文共 815 字,大约阅读时间需要 2 分钟。

string[] gqds_key = new string[23];

            string[] gqds_table = new string[23];
            string[] gqds_where = new string[23];
            string[] gqds_order = new string[23];
            DataSet gqds = new DataSet();

            gqds_key[0] = "top 9 oppid,title,opptype";

            gqds_table[0] = "Opportunity";
            gqds_where[0] = "opptype=3 and oppstate=1";
            gqds_order[0] = "oppid desc";

            gqds = DB.ReturnDataSet(gqds_key, gqds_table, gqds_where, gqds_order);

            Bind(rptgy, gqds, 0);

            protected void Bind(Repeater rpt, DataSet ds, int i)

            {
                rpt.DataSource = ds.Tables[i];
         rpt.DataBind();
            }
           public static DataSet ReturnDataSet(string[] colums, string[] tabname, string[] where, string[] order);
           string[] listsql2 = new string[7];
    listsql2[0] = "";
           listsql2[1] = "";
           dataSet ds = DB.ReturnDataSet(listsql2 );
    Bind(rptgy, ds , 0);

转载于:https://www.cnblogs.com/candyzhmm/p/4270582.html

你可能感兴趣的文章
Mina的客户端
查看>>
辣鸡(ljh)
查看>>
支持备案的域名后缀列表
查看>>
js 数组扁平化
查看>>
c# Enum获取name,value和description
查看>>
《C和指针》读书笔记 第5章-操作符和表达式
查看>>
mvc5 + ef6 + autofac搭建项目(repository+uow)(二)
查看>>
【转】C++ function、bind以及lamda表达式
查看>>
【47】请使用traits classes表现类型信息
查看>>
humble number(hd1058)
查看>>
2015 HUAS Summer Contest#3~E
查看>>
C/C++文件操作
查看>>
typeset shell 用法
查看>>
二叉查找树
查看>>
python 之 循环语句
查看>>
sql 函数的理解
查看>>
刀光拖尾效果
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
SpringCloud入门之Spring Boot多环境配置切换指南
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>