摘要:
[Delphi]Delphi开发的一些技巧 一、提高查询效率先进行准备查询操作:CustomerQuery.Close;if not (CustomerQuery.Prepared) then -->查询是否已准备好CustomerQuery.Prepare; -->查询准备CustomerQuer... 阅读全文
随笔档案-2013年06月
获取的数据载入listview控件中
2013-06-02 19:47 by 李龙江, 332 阅读, 收藏, 编辑
摘要:
ListView1.Items.Clear; ADOQuery1.close; ADOQuery1.sql.clear; ADOQuery1.sql.add('select * from Employees'); ADOQuery1.Open; while no... 阅读全文