forked from academiadocodigo/SimpleORM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleQueryZeos.pas
111 lines (91 loc) · 2.21 KB
/
SimpleQueryZeos.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Unit SimpleQueryZeos;
interface
uses
SimpleInterface, ZAbstractConnection, ZConnection,
ZAbstractRODataset, ZAbstractDataset, ZAbstractTable, ZDataset, System.Classes, Data.DB;
Type
TSimpleQueryZeos = class(TInterfacedObject, iSimpleQuery)
private
FConnection : TZConnection;
FQuery : TZQuery;
FParams : TParams;
public
constructor Create(aConnection : TZConnection);
destructor Destroy; override;
class function New(aConnection : TZConnection) : iSimpleQuery;
function SQL : TStrings;
function Params : TParams;
function ExecSQL : iSimpleQuery;
function DataSet : TDataSet;
function Open(aSQL : String) : iSimpleQuery; overload;
function Open : iSimpleQuery; overload;
end;
implementation
uses
System.SysUtils;
{ TSimpleQuery<T> }
constructor TSimpleQueryZeos.Create(aConnection : TZConnection);
begin
FQuery := TZQuery.Create(nil);
FConnection := aConnection;
FQuery.Connection := FConnection;
end;
function TSimpleQueryZeos.DataSet: TDataSet;
begin
Result := TDataSet(FQuery);
end;
destructor TSimpleQueryZeos.Destroy;
begin
FreeAndNil(FQuery);
if Assigned(FParams) then
FreeAndNil(FParams);
inherited;
end;
function TSimpleQueryZeos.ExecSQL: iSimpleQuery;
var
a: string;
begin
Result := Self;
FQuery.Params.Assign(FParams);
FQuery.Prepare;
FQuery.ExecSQL;
if Assigned(FParams) then
FreeAndNil(FParams);
end;
class function TSimpleQueryZeos.New(aConnection : TZConnection): iSimpleQuery;
begin
Result := Self.Create(aConnection);
end;
function TSimpleQueryZeos.Open: iSimpleQuery;
begin
Result := Self;
FQuery.Close;
if Assigned(FParams) then
FQuery.Params.Assign(FParams);
FQuery.Prepare;
FQuery.Open;
if Assigned(FParams) then
FreeAndNil(FParams);
end;
function TSimpleQueryZeos.Open(aSQL: String): iSimpleQuery;
begin
Result := Self;
FQuery.Close;
FQuery.SQL.Clear;
FQuery.SQL.Add(aSQL);
FQuery.Open;
end;
function TSimpleQueryZeos.Params: TParams;
begin
if not Assigned(FParams) then
begin
FParams := TParams.Create(nil);
FParams.Assign(FQuery.Params);
end;
Result := FParams;
end;
function TSimpleQueryZeos.SQL: TStrings;
begin
Result := FQuery.SQL;
end;
end.