代码搜索:库元件

找到约 10,000 项符合「库元件」的源代码

代码结果 10,000
www.eeworm.com/read/169773/5411019

txt 周期性的查询数据库(基于购物车).txt

对于数据库内容不是经常变化的,下面的做法更高效 1.周期性的查询数据库,在应用程序中保存结果,在应用程序缓存中保存结果,并用缓存中的数据填充DataGrid 1.WebForm1.aspx.cs private void Page_Load(object sender, System.EventArgs e) { DataSet ds = (DataSet)Cach
www.eeworm.com/read/475606/6774215

txt 实例——使用createtable方法建立“人员简要情况”数据库表.txt

procedure TForm1. CreateTableBtnClick(Sender: TObject); begin if not RenYuan.Exists then begin //判别Table1组件的TableName属性指定的表是否存在,如果存在结束建表 with RenYuanTable do begin Active := False; //首先将表的Ac
www.eeworm.com/read/475606/6774232

txt 实例——使用deletetable方法删除paradox数据库的人员表.txt

procedure TForm1. Delet_Table_BtnClick(Sender: TObject); begin with RenYuan do begin Active := False; //为了删除除表,表必须处于关闭状态 DatabaseName := 'DBDEMOS'; TableName := 'RenYuan'; //删除人员表'Re