学习 SQL 语句 - Insert、Update、Delete unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Grids, DBGrids, DB, ADODB; type TForm1 = class(TForm) DBGrid1: T...
1、Fields是Field的集合,它们主要用于运行时对字段元数据和字段值的访问. 2、FieldDefs是FieldDef的集合,它们主要用于构建数据集(表)和对字段元数据的访问. 3、FieldList和FieldDefList分别是访问...
因为在做PingSwitch项目时发现在Ping交换机做循环的时候界面会死掉~老师说那要使用线程来做就不会~ 因为不用涉及线程间的数据同步~所以就最简单实用的就足够了·····找了好多教程,...
上次跟大家分享了线程的标准代码,其实在线程的使用中最重要的是线程的同步问题,如果你在使用线程后,发现你的界面经常被卡死,或者无法显示出来,显示混乱,你的使用的变量...
unitUnit1; interface uses Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms, Dialogs,StdCtrls,ExtCtrls; type TMY=class(TThread) public constructorcreate();overload; destructorDestroy();overload; procedureexecute;override; e...
子线程: procedure TreadThread.Execute; begin inherited; FreeOnTerminate := True; while not Terminated do begin ////dosomething; end; Sleep(100); end; end; 主线程: var H: array[0..0] of Thandle; begin try H[0] := RCThread.handle; /...
转自 http://blog.csdn.net/fenger8293 本文是没有写过delphi的多线程,对delphi的线程类TThread不熟悉的人而写的,主要从TThread的源代码入手. Delphi为多线程的实现专门封装了一个TThread类来实现,...