摘要: SQLList := TStringList.Create; SQLList.Add('100001=select * from customer'); SQLList.Add('200001=update customer set customer=current_time where cust_no=1012');SQLList.Values['200001'] 阅读全文
posted @ 2011-02-12 23:27 delphi中间件 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 我不知道你是否知道ADOQuery的工作原理,如果知道的话,请不要怪我啰嗦,ADOQuery有几个重要的属性决定了它的工作模式和工作效率。CursorLocation、CacheSize、CursorType。 CursorLocation决定了ADOQuery的数据存取模式,它分为Server-side和Client-side两种模式,如果你选择的是Server-side(将CursorLocation属性设为clUseServer)那么当你使用ADOQuery查询数据时,查询的结果将保存在数据源的ADO缓存中或者是存储在数据源本身的缓存中,(如果你的数据源是SQL Server那... 阅读全文
posted @ 2011-02-12 17:03 delphi中间件 阅读(1146) 评论(0) 推荐(0) 编辑
摘要: function ConnRemoteSvr(cn:TSQLConnection;const hostname,UserName,password:string; const port:Integer):Boolean;begin try cn.Close; cn.DriverName := 'DataSnap'; cn.LoginPrompt :=False; Cn.ConnectionName := 'DataSnapCONNECTION'; cn.Params.Clear; cn.Params.Add('DriverName=DataSnap 阅读全文
posted @ 2011-02-12 13:42 delphi中间件 阅读(1143) 评论(0) 推荐(0) 编辑