Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/Data Abstract for Delphi/DA SQL/uStatement.pas
2010-01-29 16:17:43 +00:00

31 lines
582 B
ObjectPascal

unit uStatement;
interface
type
TStatement = class(TObject)
private
fName: string;
fSQL: string;
fDescription: string;
public
constructor Create(const aName, aSQL, aDescription: string);
property Name: string read fName;
property SQL: string read fSQL;
property Description: string read fDescription;
end;
implementation
{ TStatement }
constructor TStatement.Create(const aName, aSQL, aDescription: string);
begin
inherited Create;
fName := aName;
fSQL := aSQL;
fDescription := aDescription;
end;
end.