📄 utest.pas
字号:
unit UTest;
interface
uses ADODB,WINDOWS,Messages,Dialogs,SysUtils;
type
TTest=class(tobject)
public
Nm :string;
age:Integer;
function doInsert(mAdoCon:TAdoconnection):Boolean;
function doUpdate(mAdoCon:TAdoconnection):Boolean;
function doDelete(mAdoCon:TAdoconnection):Boolean;
end;
implementation
function TTest.doInsert(mAdoCon:TAdoconnection):Boolean;
begin
SHOWMESSAGE('doInsert: Nm='+Nm+' age='+inttostr(age));
end;
function TTest.doUpdate(mAdoCon:TAdoconnection):boolean;
begin
SHOWMESSAGE('doUpdate');
end;
function TTest.doDelete(mAdoCon:TAdoconnection):boolean;
begin
SHOWMESSAGE('doDelete');
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -