创建数据库Database创建数据集DataSet绑定数据库中的表然后在aspx页面创建数据源ObjectDataSource绑定强类型DataSet然后在创建LiisView控件绑定数据源ObjectDataSource,配置LiisView的布局与样式LiisView中的属性:显示行
分类:
其他好文 时间:
2014-08-03 12:44:35
阅读次数:
176
强类型DataSet使用:1项目-->新建项-->Data-->数据集-->*.xsd文件-->拖拽服务器资源管理器中数据库文件DataSet设计器窗口中。系统会自动帮我们生成Fill,和GetData()方法,就是数据库查询中的select * from 表名。2我们也可以自己定义SQL查询:Da...
分类:
其他好文 时间:
2014-08-02 20:52:24
阅读次数:
203
RESTClient控件返回数据集用到的控件RESTClientRESTResponseDataSetAdapterprocedure Tfrm_Main.btn_DataSet_FetchDataClick(Sender: TObject);begin ResetRESTComponentsTo....
分类:
其他好文 时间:
2014-08-02 20:38:13
阅读次数:
307
In a typical multiple-tier implementation, the steps for creating and refreshing a DataSet, and in turn, updating the original data are to:Build and f...
分类:
其他好文 时间:
2014-08-02 15:17:43
阅读次数:
225
The DataTable is a central object in the ADO.NET library. Other objects that use the DataTable include the DataSet and the DataView.When accessing Dat...
分类:
其他好文 时间:
2014-08-02 15:14:03
阅读次数:
254
项目中需要用的功能,贴上代码了。需要注意的地方:配置Web.config的时候要注意版本问题!//若是在Web.config中配置数据源,如下 /// /// 读取Excel文件 传入绝对路径 查询条件 /// /// DataSet...
分类:
Web程序 时间:
2014-08-01 13:08:11
阅读次数:
188
DataSet当前行,不是当前选中的行 int arow = 0; arow = cds1->RecNo; arow = cds1->RecordCount; arow = DBGridEh1->DataRowToRecNo(DBGridEh1->Row);//接近靠谱 arow = DBGridE...
分类:
其他好文 时间:
2014-07-31 20:01:57
阅读次数:
293
前言最近在维护一个公司之前自己开发的项目,项目使用的了WCF作为组件之间数据传输,可是在优化代码的过程当中发现了一些问题,最明显也最有必要修改的就是返回值是DataSet和DataTable的Function。众所周知在WCF的Function中返回DataTable,DataSet对于性能有相当大...
分类:
数据库 时间:
2014-07-29 11:52:06
阅读次数:
270
如题,查询一个数据集,
存储过程返回如:select * from B
中间层定义 public DataSet GetTable(string 查询条件);
客户端定义 DataSet ds = wcfClient.GetTable("")
以前一直正常着,查询也很快速,这两天不知修改到哪了,所有的查询如果返回记录较大时(100条左右),客户端就会出现服务端...
分类:
其他好文 时间:
2014-07-28 16:11:59
阅读次数:
408
// De?ne a DataSet with a single DataTable.DataSet dsInternal = new DataSet();dsInternal.Tables.Add("Users"); // De?ne two columns for this table.dsI....
分类:
Web程序 时间:
2014-07-28 11:20:50
阅读次数:
260