forked from pabrrs/TDBx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DBx.pas
431 lines (349 loc) · 11.1 KB
/
DBx.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
unit DBx;
interface
uses
Firedac.comp.client,
Firedac.comp.dataset,
Firedac.comp.UI,
Firedac.stan.Option,
Firedac.DApt,
Firedac.stan.Def,
Firedac.Phys.ADS,
Firedac.Phys.ADSWrapper,
Firedac.Phys.ASA,
Firedac.Phys.ASAWrapper,
Firedac.Phys.DB2,
Firedac.Phys.DS,
Firedac.Phys.FB,
Firedac.Phys.IB,
Firedac.Phys.IBBase,
Firedac.Phys.IBWrapper,
Firedac.Phys.Infx,
Firedac.Phys.MSAcc,
Firedac.Phys.MSSQL,
Firedac.Phys.MySQL,
Firedac.Phys.MySQLWrapper,
Firedac.Phys.ODBC,
Firedac.Phys.ODBCBase,
Firedac.Phys.ODBCWrapper,
Firedac.Phys.Oracle,
Firedac.Phys.OracleWrapper,
Firedac.Phys.PG,
Firedac.Phys.PGWrapper,
Firedac.Phys.SQLite,
Firedac.Phys.SQLiteVDataSet,
Firedac.Phys.SQLiteWrapper,
Firedac.Phys.TDBX,
Firedac.Phys.TDBXBase,
Firedac.UI.Intf,
Firedac.stan.Async,
Firedac.stan.error;
type
EDriverNotSupported = class(EFDException)
end;
type
TDBX = class
private const
SUPPORTED_DRIVERS: array [0 .. 2] of string = ('mysql', 'PG', 'sqlite');
RESULT_COMMANDS: array [0 .. 1] of string = ('select', 'pragma');
class procedure raiseDriverError;
class procedure shell(xComand: String);
class var
mysqlDriver: TFDPhysMySQLDriverLink;
postgresDriver: TFDPhysPgDriverLink;
firebirdDriver: TFDPhysFBDriverLink;
sqliteDriver: TFDPhysSQLiteDriverLink;
mssqlDriver: TFDPhysMSSQLDriverLink;
connection: TFDConnection;
public Type
MySQL = class
public
class var MYSQLDUMP: string; // default 'mysqldump'
const
ID = 'id int primary key auto_increment';
CREATED = 'created timestamp default current_timestamp';
end;
type
Postgres = class
public
class var PG_DUMP: string; // default 'pg_dump'
const
ID = 'ID SERIAL PRIMARY KEY';
CREATED = 'created timestamp default now()';
end;
type
SQLite3 = class
public
class var SQLite3: string; // default 'sqlite3'
const
ID = 'ID INTEGER PRIMARY KEY AUTOINCREMENT';
CREATED = 'created timestamp default current_timestamp';
end;
class var
_DRIVER: string;
_SERVER: string;
_PORT: string;
_USERNAME: string;
_PASSWORD: string;
_DATABASE: string;
_TIMEOUT: string;
class function killConnection: boolean;
class function startConnection: TFDConnection;
class function execute(pSql: string): TFDQuery; overload;
class function execute(pSql: string; pParams: array of variant): TFDQuery; overload;
class procedure createDatabase(const pDbName: string);
class function databaseExists(const pDbName: string): boolean;
class procedure dropDatabase(const pDbName: string);
class procedure backupDatabase(const pDbName, pFileDestination: string);
class procedure createTable(const pTableName: string; const pColumns: array of string);
class function tableExists(const pTableName: string): boolean;
class procedure dropTable(const pTableName: string);
class procedure clearTable(const pTableName: string);
class procedure renameTable(const pFromTable, pToTable: string);
class function columnExists(const pTableName, pColumnName: string): boolean;
end;
implementation
uses strutils, types, data.db, System.SysUtils, System.IOUtils, Winapi.Windows;
{ TDBx }
class function TDBX.execute(pSql: string): TFDQuery;
begin
result := TDBX.execute(pSql, []);
end;
class procedure TDBX.backupDatabase(const pDbName, pFileDestination: string);
begin
TDBX._DATABASE := '';
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0: // mysql
TDBX.shell(IfThen(TDBX.MySQL.MYSQLDUMP = '', 'mysqldump', TDBX.MySQL.MYSQLDUMP) + ' -h' + TDBX._SERVER + ' -u' + TDBX._USERNAME +
' -p' + TDBX._PASSWORD + ' -c -e --databases ' + pDbName + ' --result-file=' + pFileDestination);
1: // Postgres (PG)
// 'set PGPASSWORD=' + TDBX._PASSWORD + ' && ' + ' --dbname ' + pDbName + '
TDBX.shell(IfThen(TDBX.Postgres.PG_DUMP = '', 'pg_dump', TDBX.Postgres.PG_DUMP) + ' --host ' + TDBX._SERVER + ' --port ' + TDBX._PORT
+ ' --username ' + TDBX._USERNAME + ' --format custom --file ' + pFileDestination + ' ' + pDbName);
2: // sqlite
TDBX.shell(IfThen(TDBX.SQLite3.SQLite3 = '', 'sqlite3', TDBX.SQLite3.SQLite3) + ' ' + pDbName + ' -cmd ".output ' + pFileDestination +
'" ".dump"');
else
TDBX.raiseDriverError;
end;
FreeConsole;
end;
class procedure TDBX.clearTable(const pTableName: string);
begin
TDBX.execute('delete from ' + pTableName);
end;
class function TDBX.columnExists(const pTableName, pColumnName: string): boolean;
var
qry: TFDQuery;
begin
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0: // mysql
result := TDBX.execute('select * from information_schema.columns where column_name = ? and table_name = ? and table_schema = ?',
[pColumnName, pTableName, TDBX._DATABASE]) <> nil;
1: // Postgres (PG)
result := TDBX.execute('select * from information_schema.columns where column_name = ? and table_name = ? and table_catalog = ?',
[pColumnName, pTableName, TDBX._DATABASE]) <> nil;
2: // sqlite
begin
result := false;
qry := TDBX.execute('PRAGMA table_info(' + pTableName + ')');
if qry <> nil then
begin
with qry do
begin
first;
while not eof do
begin
result := qry.FieldByName('name').AsString = pColumnName;
if result then // find column in table
Exit;
Next;
end;
end;
end;
end;
else
TDBX.raiseDriverError;
end;
end;
class procedure TDBX.createDatabase(const pDbName: string);
begin
TDBX._DATABASE := '';
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0, 1: // mysql, Postgres (PG)
TDBX.execute('create database ' + pDbName);
2: // sqlite
TFile.Create(pDbName).Free;
else
TDBX.raiseDriverError;
end;
end;
class procedure TDBX.createTable(const pTableName: string; const pColumns: array of string);
var
script, c: string;
begin
script := 'create table ' + pTableName + ' (';
for c in pColumns do
script := script + c + ',';
script := script.Remove(Length(script) - 1) + ')';
TDBX.execute(script);
end;
class function TDBX.databaseExists(const pDbName: string): boolean;
begin
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0: // mysql
result := TDBX.execute('select * from information_schema.schemata where schema_name = ?', [pDbName]) <> nil;
1: // Postgres(PG)
result := TDBX.execute('select * from pg_catalog.pg_database where datname = ?', [pDbName]) <> nil;
2: // sqlite
result := TFile.Exists(pDbName, false);
else
TDBX.raiseDriverError;
end;
end;
class procedure TDBX.dropDatabase(const pDbName: string);
begin
TDBX._DATABASE := '';
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0, 1: // mysql, Postgres(PG)
TDBX.execute('drop database ' + pDbName);
2: // sqlite
TFile.delete(pDbName);
else
TDBX.raiseDriverError;
end;
end;
class procedure TDBX.dropTable(const pTableName: string);
begin
TDBX.execute('drop table ' + pTableName);
end;
class function TDBX.execute(pSql: string; pParams: array of variant): TFDQuery;
var
i: integer;
firstCommand: string;
begin
result := TFDQuery.Create(nil);
with result do
begin
connection := TDBX.startConnection;
active := false;
close;
sql.Clear;
sql.Add(pSql);
for i := Low(pParams) to High(pParams) do
params[i].value := pParams[i];
// Here, we match the first blankspace and capture the first argument
// from the sql command
// Then, we determine what kind operation must be executed
// Open or ExecSQL
firstCommand := LowerCase(copy(pSql, 1, (ansipos(' ', pSql) - 1)));
if ansimatchstr(firstCommand, RESULT_COMMANDS) then
begin
open;
active := true;
FetchAll;
if recordcount = 0 then
result := nil;
end
else
ExecSQL;
end;
end;
class function TDBX.startConnection: TFDConnection;
begin
if not ansimatchstr(TDBX._DRIVER, SUPPORTED_DRIVERS) then
TDBX.raiseDriverError;
if connection = nil then
begin
connection := TFDConnection.Create(nil);
with connection do
begin
Connected := false;
params.BeginUpdate;
params.Clear;
params.endUpdate;
ResourceOptions.AutoReconnect := false;
params.BeginUpdate;
LoginPrompt := false;
params.Values['Server'] := TDBX._SERVER;
params.Values['Port'] := TDBX._PORT;
params.Values['Database'] := TDBX._DATABASE;
params.Values['User_name'] := TDBX._USERNAME;
params.Values['Password'] := TDBX._PASSWORD;
params.Values['DriverID'] := TDBX._DRIVER;
params.Values['LoginTimeout'] := TDBX._TIMEOUT;
params.endUpdate;
end;
end;
connection.ResourceOptions.AutoReconnect := true;
connection.ResourceOptions.SilentMode := true;
connection.ConnectedStoredUsage := [auDesignTime, auRunTime];
connection.Connected := true;
result := connection;
end;
class function TDBX.killConnection: boolean;
begin
result := false;
if connection <> nil then
with connection do
begin
Connected := false;
Destroy;
end;
connection := nil;
result := true;
end;
class procedure TDBX.raiseDriverError;
begin
raise EDriverNotSupported.Create(Format('Driver [%s] is not supported.', [TDBX._DRIVER]));
end;
class procedure TDBX.renameTable(const pFromTable, pToTable: string);
begin
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0: // mysql
TDBX.execute('RENAME TABLE ' + pFromTable + ' TO ' + pToTable);
1, 2: // postgres (PG), sqlite
TDBX.execute('ALTER TABLE ' + pFromTable + ' RENAME TO ' + pToTable);
else
TDBX.raiseDriverError
end;
end;
class procedure TDBX.shell(xComand: String);
var
tmpStartupInfo: TStartupInfo;
tmpProcessInformation: TProcessInformation;
tmpProgram: String;
aMsg: TMsg;
begin
tmpProgram := trim(xComand);
FillChar(tmpStartupInfo, SizeOf(tmpStartupInfo), 0);
with tmpStartupInfo do
begin
cb := SizeOf(TStartupInfo);
wShowWindow := SW_HIDE;
end;
if CreateProcess(nil, pchar(tmpProgram), nil, nil, true, CREATE_NO_WINDOW, nil, nil, tmpStartupInfo, tmpProcessInformation) then
begin
while WaitForSingleObject(tmpProcessInformation.hProcess, 10) > 0 do
PeekMessage(aMsg, 0, 0, 0, 0);
CloseHandle(tmpProcessInformation.hProcess);
CloseHandle(tmpProcessInformation.hThread);
end
else
RaiseLastOSError;
end;
class function TDBX.tableExists(const pTableName: string): boolean;
begin
case AnsiIndexStr(TDBX._DRIVER, SUPPORTED_DRIVERS) of
0: // mysql
result := TDBX.execute('select * from information_schema.tables where table_name = ? and table_schema = ?',
[pTableName, TDBX._DATABASE]) <> nil;
1: // postgres (PG)
result := TDBX.execute('select * from information_schema.tables where table_name = ? and table_catalog = ?',
[pTableName, TDBX._DATABASE]) <> nil;
2: // sqlite
result := TDBX.execute('SELECT * FROM sqlite_master where type = "table" and tbl_name = ?', [pTableName]) <> nil;
else
TDBX.raiseDriverError
end;
end;
end.