-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEntityObjects.Base.pas
More file actions
176 lines (143 loc) · 4.65 KB
/
EntityObjects.Base.pas
File metadata and controls
176 lines (143 loc) · 4.65 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{ *************************************************************************** }
{ }
{ }
{ }
{ Entity Framework for Delphi - version 1.24
{ Código Original criado por: by Julio Cascalles - 2015/2016 - Brasil
{ }
{ }
{ *************************************************************************** }
{ }
{ Licensed under the Apache License, Version 2.0 (the "License"); }
{ you may not use this file except in compliance with the License. }
{ You may obtain a copy of the License at }
{ }
{ http://www.apache.org/licenses/LICENSE-2.0 }
{ }
{ Unless required by applicable law or agreed to in writing, software }
{ distributed under the License is distributed on an "AS IS" BASIS, }
{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }
{ See the License for the specific language governing permissions and }
{ limitations under the License. }
{ }
{ *************************************************************************** }
{
Alterações:
Legendas:
+ incluido novo....
* correção de funcionalidades
- retirado
= sem alterações significativas
24/08/2016 = por: Amarildo Lacerda
feito separação do codigo por UNIT para permitir acoplar
drivers de banco de dados diverentes na mesma estrutura;
não foi adicionado novo recurso (somente preparação)
+ incluido SetConnectionsString metodo para superte a Interface.
+ incluido novo construtor base (sem parametros)
* alterado o constructor que passa parametros para secundário
+ incluido procedure INIT para permitir iniciar algum recuros no create;
}
unit EntityObjects.Base;
interface
{$I EntityObjects.inc}
uses Classes, Sysutils, DB;
const
{$IFDEF FPC}
cIDE_VERSION = 'Lazarus';
{$ELSE}
{$IFDEF DELPHI_XE_SUP}
cIDE_VERSION = 'Delphi XE...';
{$ELSE}
cIDE_VERSION = 'Delphi 5, 6, 7...';
{$ENDIF}
{$ENDIF}
type
TSearchCompare = (scGreater, scLess, scContains, scEquals);
TLogicalOperator = (_AND_, _OR_);
TAutoIncrementType = (aitNone, aitMySql, aitSqlServer);
TConListAction = (claTables, claFields, claClear);
TEntitySettings = class
JoinTables: Boolean;
DateFormat, FloatFormat, StartLikeExpr, EndLikeExpr: string;
AutoIncType: TAutoIncrementType;
end;
IEntityConnection = interface
['{554FCF89-B973-44D4-B462-43EE435CD9F4}']
function Settings: TEntitySettings;
function ExecuteCommand(const command: string; openQuery: Boolean)
: TDataSet;
function GetList(Action: TConListAction; const Params: string = '')
: TStringList;
procedure SetConnectionString(const _ConnectionString: string);
end;
TCommaTextOptions = set of (ctoNames, ctoValues);
TEntityState = (estReady, estLoading, estEditing);
TCustomEntityConnection = class;
TCustomEntityConnectionClass = class of TCustomEntityConnection;
{ TCustomEntityConnection }
TCustomEntityConnection = class(TInterfacedObject, IEntityConnection)
private
f_Settings: TEntitySettings;
{$IFDEF ENTITY_LOG_SQL}
Log_id: integer;
procedure SaveLog(Strings: TStrings);
{$ENDIF}
protected
procedure Init;virtual;
public
constructor create; overload;virtual;
constructor create( _SetConnectionString:string);overload;virtual;
destructor destroy; override;
function Settings: TEntitySettings; virtual;
function ExecuteCommand(const command: string; openQuery: Boolean)
: TDataSet; virtual; abstract;
function GetList(Action: TConListAction; const Params: string = '')
: TStringList; virtual; abstract;
procedure SetConnectionString(const _ConnectionString: string);
virtual; abstract;
end;
implementation
{$IFDEF ENTITY_LOG_SQL}
procedure TCustomEntityConnection.SaveLog(Strings: TStrings);
var
LogFile: string;
begin
Inc(Log_id);
LogFile := '.\' + FormatDateTime('yyyyddmmhhnn', Now) + '_' +
Copy(Strings.Text, 1, 3) + '_' + IntToStr(Log_id) + '.sql';
Strings.SaveToFile(LogFile);
end;
{$ENDIF}
constructor TCustomEntityConnection.create;
begin
inherited create;
Init;
f_Settings := TEntitySettings.create;
with f_Settings do
begin
JoinTables := false;
DateFormat := 'yyyy/mm/dd';
FloatFormat := '###0.00';
StartLikeExpr := '%';
EndLikeExpr := '%';
AutoIncType := aitNone;
end; // with
end;
constructor TCustomEntityConnection.create(_SetConnectionString: string);
begin
Create;
SetConnectionString(_SetConnectionString);
end;
destructor TCustomEntityConnection.destroy;
begin
f_Settings.Free;
inherited;
end;
procedure TCustomEntityConnection.Init;
begin
end;
function TCustomEntityConnection.Settings: TEntitySettings;
begin
Result := f_Settings;
end;
end.