-
Notifications
You must be signed in to change notification settings - Fork 35
/
Quick.Core.Entity.Engine.ADO.pas
389 lines (333 loc) · 11.3 KB
/
Quick.Core.Entity.Engine.ADO.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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
{ ***************************************************************************
Copyright (c) 2016-2022 Kike Pérez
Unit : Quick.Core.Entity.Engine.ADO
Description : Core Entity ADO Provider
Author : Kike Pérez
Version : 1.1
Created : 22/11/2019
Modified : 19/05/2022
This file is part of QuickCore: https://github.com/exilon/QuickCore
***************************************************************************
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.
*************************************************************************** }
unit Quick.Core.Entity.Engine.ADO;
{$i QuickCore.inc}
interface
uses
Classes,
SysUtils,
{$IFDEF MSWINDOWS}
Data.Win.ADODB,
Winapi.ActiveX,
{$ELSE}
only Delphi/Firemonkey Windows compatible
{$ENDIF}
Quick.Commons,
Quick.Core.Entity.DAO,
Quick.Core.Entity.Database,
Quick.Core.Entity.Query;
const
db_MSAccess2000 = Cardinal(TDBProvider.dbMSAccess2000);
db_MSAccess2007 = Cardinal(TDBProvider.dbMSAccess2007);
db_MSSQL = Cardinal(TDBProvider.dbMSSQL);
db_MSSQLnc10 = Cardinal(TDBProvider.dbMSSQL) + 1;
db_MSSQLnc11 = Cardinal(TDBProvider.dbMSSQL) + 2;
db_IBM400 = Cardinal(TDBProvider.dbIBM400);
type
TADOEntityDataBase = class(TEntityDatabase)
private
fADOConnection : TADOConnection;
fInternalQuery : TADOQuery;
function GetDBProviderName(aDBProvider: TDBProvider): string;
protected
function CreateConnectionString: string; override;
procedure DoOpenSQLQuery(const aQueryText: string); override;
procedure DoExecuteSQLQuery(const aQueryText: string); override;
function ExistsTable(aModel : TEntityModel) : Boolean; override;
function ExistsColumn(aModel: TEntityModel; const aFieldName: string): Boolean; override;
public
constructor Create; override;
constructor CreateFromConnection(aConnection: TADOConnection; aOwnsConnection : Boolean);
destructor Destroy; override;
function CreateQuery(aModel : TEntityModel) : IEntityQuery<TEntity>; override;
function Connect : Boolean; override;
procedure Disconnect; override;
function GetTableNames : TArray<string>; override;
function GetFieldNames(const aTableName : string) : TArray<string>; override;
function IsConnected : Boolean; override;
function From<T : class, constructor> : IEntityLinqQuery<T>;
function Clone : TEntityDatabase; override;
end;
TADOEntityQuery<T : class, constructor> = class(TEntityQuery<T>)
private
fConnection : TDBConnectionSettings;
fADOConnection : TADOConnection;
fQuery : TADOQuery;
protected
function GetCurrent : T; override;
function MoveNext : Boolean; override;
function GetFieldValue(const aName : string) : Variant; override;
function OpenQuery(const aQuery : string) : Integer; override;
function ExecuteQuery(const aQuery : string) : Boolean; override;
public
constructor Create(aEntityDataBase : TEntityDatabase; aModel : TEntityModel; aQueryGenerator : IEntityQueryGenerator); override;
destructor Destroy; override;
function CountResults : Integer; override;
function Eof : Boolean; override;
end;
implementation
{ TADOEntityDataBase }
constructor TADOEntityDataBase.Create;
begin
inherited;
CoInitialize(nil);
fADOConnection := TADOConnection.Create(nil);
fInternalQuery := TADOQuery.Create(nil);
end;
constructor TADOEntityDataBase.CreateFromConnection(aConnection: TADOConnection; aOwnsConnection: Boolean);
begin
Create;
if OwnsConnection then fADOConnection.Free;
OwnsConnection := aOwnsConnection;
fADOConnection := aConnection;
end;
destructor TADOEntityDataBase.Destroy;
begin
if Assigned(fInternalQuery) then fInternalQuery.Free;
if fADOConnection.Connected then fADOConnection.Connected := False;
if OwnsConnection then fADOConnection.Free;
CoUninitialize;
inherited;
end;
function TADOEntityDataBase.Clone: TEntityDatabase;
begin
Result := TADOEntityDataBase.CreateFromConnection(fADOConnection,False);
Result.Connection.Free;
Result.Connection := Connection.Clone;
end;
function TADOEntityDataBase.Connect: Boolean;
begin
//creates connection string based on parameters of connection property
inherited;
fADOConnection.ConnectionString := CreateConnectionString;
fADOConnection.Connected := True;
fInternalQuery.Connection := fADOConnection;
Result := IsConnected;
CreateTables;
CreateIndexes;
end;
function TADOEntityDataBase.CreateConnectionString: string;
var
dbconn : string;
begin
if Connection.IsCustomConnectionString then Result := Format('Provider=%s;%s',[GetDBProviderName(Connection.Provider),Connection.GetCustomConnectionString])
else
begin
if (Connection.Server.IsEmpty) or
(Connection.Database.IsEmpty) or
(Connection.UserName.IsEmpty) then raise EEntityConnectionError.Create('Entity ConnectionString missing info!');
if Connection.Server = '' then dbconn := 'Data Source=' + Connection.Database
else dbconn := Format('Database=%s;Data Source=%s',[Connection.Database,Connection.Server]);
Result := Format('Provider=%s;Persist Security Info=False;User ID=%s;Password=%s;%s;MARS Connection = True;',[
GetDBProviderName(Connection.Provider),
Connection.UserName,
Connection.Password,
dbconn]);
end;
end;
function TADOEntityDataBase.CreateQuery(aModel : TEntityModel) : IEntityQuery<TEntity>;
begin
Result := TADOEntityQuery<TEntity>.Create(Self,aModel,QueryGenerator);
end;
function TADOEntityDataBase.GetDBProviderName(aDBProvider: TDBProvider): string;
begin
case aDBProvider of
TDBProvider.dbMSAccess2000 : Result := 'Microsoft.Jet.OLEDB.4.0';
TDBProvider.dbMSAccess2007 : Result := 'Microsoft.ACE.OLEDB.12.0';
TDBProvider.dbMSSQL : Result := 'SQLOLEDB.1';
TDBProvider.dbMSSQLnc10 : Result := 'SQLNCLI10';
TDBProvider.dbMSSQLnc11 : Result := 'SQLNCLI11';
TDBProvider.dbIBM400 : Result := 'IBMDA4000';
else raise Exception.Create('Unknow DBProvider or not supported by this engine');
end;
end;
function TADOEntityDataBase.GetFieldNames(const aTableName: string): TArray<string>;
var
sl : TStrings;
begin
sl := TStringList.Create;
try
fInternalQuery.Connection.GetFieldNames(aTableName,sl);
Result := StringsToArray(sl);
finally
sl.Free;
end;
end;
function TADOEntityDataBase.GetTableNames: TArray<string>;
var
sl : TStrings;
begin
sl := TStringList.Create;
try
fInternalQuery.Connection.GetTableNames(sl);
Result := StringsToArray(sl);
finally
sl.Free;
end;
end;
procedure TADOEntityDataBase.Disconnect;
begin
inherited;
fADOConnection.Connected := False;
end;
function TADOEntityDataBase.IsConnected: Boolean;
begin
Result := fADOConnection.Connected;
end;
procedure TADOEntityDataBase.DoOpenSQLQuery(const aQueryText: string);
begin
fInternalQuery.SQL.Text := aQueryText;
fInternalQuery.Open;
end;
procedure TADOEntityDataBase.DoExecuteSQLQuery(const aQueryText: string);
begin
fInternalQuery.SQL.Text := aQueryText;
fInternalQuery.ExecSQL;
end;
function TADOEntityDataBase.ExistsColumn(aModel: TEntityModel; const aFieldName: string): Boolean;
var
field : string;
begin
Result := False;
if (Connection.Provider = TDBProvider.dbMSAccess2000) or (Connection.Provider = TDBProvider.dbMSAccess2007) then
begin
if (Connection.Provider = TDBProvider.dbMSAccess2000) or (Connection.Provider = TDBProvider.dbMSAccess2007) then
begin
for field in GetFieldNames(aModel.TableName) do
begin
if CompareText(field,aFieldName) = 0 then Exit(True);
end;
end;
end
else
begin
DoOpenSQLQuery(QueryGenerator.ExistsColumn(aModel,aFieldName));
while not fInternalQuery.Eof do
begin
if CompareText(fInternalQuery.FieldByName('name').AsString,aFieldName) = 0 then
begin
Result := True;
Break;
end;
fInternalQuery.Next;
end;
fInternalQuery.SQL.Clear;
end;
end;
function TADOEntityDataBase.ExistsTable(aModel: TEntityModel): Boolean;
var
table : string;
begin
Result := False;
if (Connection.Provider = TDBProvider.dbMSAccess2000) or (Connection.Provider = TDBProvider.dbMSAccess2007) then
begin
for table in GetTableNames do
begin
if CompareText(table,aModel.TableName) = 0 then Exit(True);
end;
end
else
begin
DoOpenSQLQuery(QueryGenerator.ExistsTable(aModel));
while not fInternalQuery.Eof do
begin
if CompareText(fInternalQuery.FieldByName('name').AsString,aModel.TableName) = 0 then
begin
Result := True;
Break;
end;
fInternalQuery.Next;
end;
fInternalQuery.SQL.Clear;
end;
end;
function TADOEntityDataBase.From<T>: IEntityLinqQuery<T>;
var
entityClass : TEntityClass;
begin
entityClass := TEntityClass(Pointer(T));
Result := TADOEntityQuery<T>.Create(Self,Models.Get(entityClass),QueryGenerator);
end;
{ TADOEntityQuery<T> }
constructor TADOEntityQuery<T>.Create(aEntityDataBase : TEntityDatabase; aModel : TEntityModel; aQueryGenerator : IEntityQueryGenerator);
begin
inherited;
CoInitialize(nil);
fADOConnection := TADOConnection.Create(nil);
fADOConnection.ConnectionString := TADOEntityDataBase(aEntityDataBase).CreateConnectionString;
fADOConnection.Connected := True;
fQuery := TADOQuery.Create(nil);
//fQuery.Connection := TADOEntityDataBase(aEntityDataBase).fADOConnection;
fQuery.Connection := fADOConnection;
fConnection := aEntityDataBase.Connection;
end;
destructor TADOEntityQuery<T>.Destroy;
begin
if Assigned(fQuery) then fQuery.Free;
if Assigned(fADOConnection) then fADOConnection.Free;
CoUninitialize;
inherited;
end;
function TADOEntityQuery<T>.Eof: Boolean;
begin
Result := fQuery.Eof;
end;
function TADOEntityQuery<T>.OpenQuery(const aQuery: string): Integer;
begin
fFirstIteration := True;
fQuery.Close;
fQuery.SQL.Text := aQuery;
fQuery.Open;
fHasResults := fQuery.RecordCount > 0;
Result := fQuery.RecordCount;
end;
function TADOEntityQuery<T>.ExecuteQuery(const aQuery: string): Boolean;
begin
fQuery.SQL.Text := aQuery;
fQuery.ExecSQL;
fHasResults := False;
Result := fQuery.RowsAffected > 0;
end;
function TADOEntityQuery<T>.GetFieldValue(const aName: string): Variant;
begin
Result := fQuery.FieldByName(aName).AsVariant;
end;
function TADOEntityQuery<T>.CountResults: Integer;
begin
Result := fQuery.RecordCount;
end;
function TADOEntityQuery<T>.GetCurrent: T;
begin
if fQuery.Eof then Exit(nil);
Result := fModel.NewEntity<T>;// fModel.Table.Create as T;
Self.FillRecordFromDB(Result);
end;
function TADOEntityQuery<T>.MoveNext: Boolean;
begin
if not fFirstIteration then fQuery.Next;
fFirstIteration := False;
Result := not fQuery.Eof;
end;
initialization
if (IsConsole) or (IsService) then CoInitialize(nil);
finalization
if (IsConsole) or (IsService) then CoUninitialize;
end.