-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDataGrabber.ConnectionSettings.pas
450 lines (377 loc) · 10.3 KB
/
DataGrabber.ConnectionSettings.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
{
Copyright (C) 2013-2024 Tim Sinaeve tim.sinaeve@gmail.com
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.
}
{$I DataGrabber.inc}
unit DataGrabber.ConnectionSettings;
{
Application-level connection parameters.
FireDAC connection parameters with example:
Name := 'MSSQL_Connection';
DriverID := 'MSSQL';
Server := '127.0.0.1';
Database := 'Northwind';
OSAuthent := True;
UserName
Password
Pooled
PoolCleanupTimeout
PoolExpireTimeout
PoolMaximumItems
}
interface
uses
System.Classes,
Spring;
type
TConnectionSettings = class(TPersistent)
private
FUserName : string;
FDriverName : string;
FPort : Integer;
FPassword : string;
FHostName : string;
FDatabase : string;
FCatalog : string;
FReadOnly : Boolean;
FOnChanged : Event<TNotifyEvent>;
FFetchOnDemand : Boolean;
FPacketRecords : Integer;
FMaxRecords : Integer;
FAutoReconnect : Boolean;
FOSAuthent : Boolean;
FDisconnectedMode : Boolean;
FMultipleResultSets : Boolean;
FConnectionDefName : string;
{$REGION 'property access methods'}
function GetCatalog: string;
function GetDatabase: string;
function GetHostName: string;
function GetPassword: string;
function GetPort: Integer;
function GetDriverName: string;
function GetUserName: string;
procedure SetCatalog(const Value: string);
procedure SetDatabase(const Value: string);
procedure SetHostName(const Value: string);
procedure SetPassword(const Value: string);
procedure SetPort(const Value: Integer);
procedure SetDriverName(const Value: string);
procedure SetUserName(const Value: string);
function GetReadOnly: Boolean;
procedure SetReadOnly(const Value: Boolean);
function GetFetchOnDemand: Boolean;
function GetPacketRecords: Integer;
procedure SetFetchOnDemand(const Value: Boolean);
procedure SetPacketRecords(const Value: Integer);
function GetMaxRecords: Integer;
procedure SetMaxRecords(const Value: Integer);
function GetOnChanged: IEvent<TNotifyEvent>;
function GetAutoReconnect: Boolean;
procedure SetAutoReconnect(const Value: Boolean);
function GetOSAuthent: Boolean;
procedure SetOSAuthent(const Value: Boolean);
function GetDisconnectedMode: Boolean;
procedure SetDisconnectedMode(const Value: Boolean);
function GetMultipleResultSets: Boolean;
procedure SetMultipleResultSets(const Value: Boolean);
function GetConnectionDefName: string;
procedure SetConnectionDefName(const Value: string);
{$ENDREGION}
protected
procedure Changed;
public
procedure Assign(Source: TPersistent); override;
procedure AfterConstruction; override;
published
property AutoReconnect: Boolean
read GetAutoReconnect write SetAutoReconnect default True;
property DriverName: string
read GetDriverName write SetDriverName;
property HostName: string
read GetHostName write SetHostName;
property Port: Integer
read GetPort write SetPort default 0;
{ Database name or file. }
property Database: string
read GetDatabase write SetDatabase;
property UserName: string
read GetUserName write SetUserName;
property Password: string
read GetPassword write SetPassword;
property Catalog: string
read GetCatalog write SetCatalog;
{ References the connection definition name in the FireDAC ini file. }
property ConnectionDefName: string
read GetConnectionDefName write SetConnectionDefName;
property ReadOnly: Boolean
read GetReadOnly write SetReadOnly;
property MaxRecords: Integer
read GetMaxRecords write SetMaxRecords;
property FetchOnDemand: Boolean
read GetFetchOnDemand write SetFetchOnDemand;
property PacketRecords: Integer
read GetPacketRecords write SetPacketRecords;
property OSAuthent: Boolean
read GetOSAuthent write SetOSAuthent default True;
property DisconnectedMode: Boolean
read GetDisconnectedMode write SetDisconnectedMode;
property MultipleResultSets: Boolean
read GetMultipleResultSets write SetMultipleResultSets;
property OnChanged: IEvent<TNotifyEvent>
read GetOnChanged;
end;
implementation
{$REGION 'construction and destruction'}
procedure TConnectionSettings.AfterConstruction;
begin
inherited AfterConstruction;
FOSAuthent := True;
FAutoReconnect := True;
end;
{$ENDREGION}
{$REGION 'property access methods'}
function TConnectionSettings.GetAutoReconnect: Boolean;
begin
Result := FAutoReconnect;
end;
procedure TConnectionSettings.SetAutoReconnect(const Value: Boolean);
begin
if Value <> AutoReconnect then
begin
FAutoReconnect := Value;
Changed;
end;
end;
function TConnectionSettings.GetCatalog: string;
begin
Result := FCatalog;
end;
procedure TConnectionSettings.SetCatalog(const Value: string);
begin
if Value <> Catalog then
begin
FCatalog := Value;
Changed;
end;
end;
function TConnectionSettings.GetConnectionDefName: string;
begin
Result := FConnectionDefName;
end;
procedure TConnectionSettings.SetConnectionDefName(const Value: string);
begin
if Value <> ConnectionDefName then
begin
FConnectionDefName := Value;
Changed;
end;
end;
function TConnectionSettings.GetDatabase: string;
begin
Result := FDatabase;
end;
function TConnectionSettings.GetDisconnectedMode: Boolean;
begin
Result := FDisconnectedMode;
end;
procedure TConnectionSettings.SetDisconnectedMode(const Value: Boolean);
begin
if Value <> DisconnectedMode then
begin
FDisconnectedMode := Value;
Changed;
end;
end;
procedure TConnectionSettings.SetDatabase(const Value: string);
begin
if Value <> Database then
begin
FDatabase := Value;
Changed;
end;
end;
function TConnectionSettings.GetFetchOnDemand: Boolean;
begin
Result := FFetchOnDemand;
end;
procedure TConnectionSettings.SetFetchOnDemand(const Value: Boolean);
begin
if Value <> FetchOnDemand then
begin
FFetchOnDemand := Value;
Changed;
end;
end;
function TConnectionSettings.GetHostName: string;
begin
Result := FHostName;
end;
procedure TConnectionSettings.SetHostName(const Value: string);
begin
if Value <> HostName then
begin
FHostName := Value;
Changed;
end;
end;
function TConnectionSettings.GetMaxRecords: Integer;
begin
Result := FMaxRecords;
end;
procedure TConnectionSettings.SetMaxRecords(const Value: Integer);
begin
if Value <> MaxRecords then
begin
FMaxRecords := Value;
Changed;
end;
end;
function TConnectionSettings.GetMultipleResultSets: Boolean;
begin
Result := FMultipleResultSets;
end;
procedure TConnectionSettings.SetMultipleResultSets(const Value: Boolean);
begin
if Value <> MultipleResultSets then
begin
FMultipleResultSets := Value;
Changed;
end;
end;
function TConnectionSettings.GetOSAuthent: Boolean;
begin
Result := FOSAuthent;
end;
procedure TConnectionSettings.SetOSAuthent(const Value: Boolean);
begin
if Value <> OSAuthent then
begin
FOSAuthent := Value;
Changed;
end;
end;
function TConnectionSettings.GetOnChanged: IEvent<TNotifyEvent>;
begin
Result := FOnChanged;
end;
function TConnectionSettings.GetPacketRecords: Integer;
begin
Result := FPacketRecords;
end;
procedure TConnectionSettings.SetPacketRecords(const Value: Integer);
begin
if Value <> PacketRecords then
begin
FPacketRecords := Value;
Changed;
end;
end;
function TConnectionSettings.GetPassword: string;
begin
Result := FPassword;
end;
procedure TConnectionSettings.SetPassword(const Value: string);
begin
if Value <> Password then
begin
FPassword := Value;
Changed;
end;
end;
function TConnectionSettings.GetPort: Integer;
begin
Result := FPort;
end;
procedure TConnectionSettings.SetPort(const Value: Integer);
begin
if Value <> Port then
begin
FPort := Value;
Changed;
end;
end;
function TConnectionSettings.GetReadOnly: Boolean;
begin
Result := FReadOnly;
end;
procedure TConnectionSettings.SetReadOnly(const Value: Boolean);
begin
if Value <> ReadOnly then
begin
FReadOnly := Value;
Changed;
end;
end;
function TConnectionSettings.GetDriverName: string;
begin
Result := FDriverName;
end;
procedure TConnectionSettings.SetDriverName(const Value: string);
begin
if Value <> DriverName then
begin
FDriverName := Value;
Changed;
end;
end;
function TConnectionSettings.GetUserName: string;
begin
Result := FUserName;
end;
procedure TConnectionSettings.SetUserName(const Value: string);
begin
if Value <> UserName then
begin
FUserName := Value;
Changed;
end;
end;
{$ENDREGION}
{$REGION 'protected methods'}
procedure TConnectionSettings.Changed;
begin
if FOnChanged.CanInvoke then
FOnChanged.Invoke(Self);
end;
{$ENDREGION}
{$REGION 'public methods'}
procedure TConnectionSettings.Assign(Source: TPersistent);
var
CS: TConnectionSettings;
begin
if (Source <> Self) and (Source is TConnectionSettings) then
begin
CS := TConnectionSettings(Source);
FDriverName := CS.DriverName;
FPassword := CS.Password;
FCatalog := CS.Catalog;
FHostName := CS.HostName;
FUserName := CS.UserName;
FPort := CS.Port;
FDatabase := CS.Database;
FFetchOnDemand := CS.FetchOnDemand;
FPacketRecords := CS.PacketRecords;
FReadOnly := CS.ReadOnly;
FConnectionDefName := CS.ConnectionDefName;
FMaxRecords := CS.MaxRecords;
FAutoReconnect := CS.AutoReconnect;
FOSAuthent := CS.OSAuthent;
FMultipleResultSets := CS.MultipleResultSets;
Changed;
end
else
inherited Assign(Source);
end;
{$ENDREGION}
initialization
RegisterClasses([TConnectionSettings]);
end.