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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
|
{$IFDEF MYSQL56_UP}
{$DEFINE MYSQL55_UP}
{$ENDIF}
{$IFDEF MYSQL55_UP}
{$DEFINE MYSQL51_UP}
{$ENDIF}
{$IFDEF MYSQL51_UP}
{$DEFINE MYSQL50_UP}
{$ENDIF}
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,bufdataset,sqldb,db,ctypes,
{$IFDEF mysql56}
mysql56dyn;
{$ELSE}
{$IFDEF mysql55}
mysql55dyn;
{$ELSE}
{$IFDEF mysql51}
mysql51dyn;
{$ELSE}
{$IfDef mysql50}
mysql50dyn;
{$ELSE}
{$IfDef mysql41}
mysql41dyn;
{$ELSE}
mysql40dyn;
{$EndIf}
{$EndIf}
{$endif}
{$endif}
{$ENDIF}
Const
MySQLVersion =
{$IFDEF mysql56}
'5.6';
{$ELSE}
{$IFDEF mysql55}
'5.5';
{$ELSE}
{$IFDEF mysql51}
'5.1';
{$else}
{$IfDef mysql50}
'5.0';
{$ELSE}
{$IfDef mysql41}
'4.1';
{$ELSE}
'4.0';
{$EndIf}
{$EndIf}
{$endif}
{$endif}
{$ENDIF}
MariaDBVersion =
{$IFDEF mysql56} // MariaDB 10.0 is compatible with MySQL 5.6
'10.0';
{$ELSE} // MariaDB 5.1..5.5 presumably report the same version number as MySQL
MySQLVersion;
{$ENDIF}
Type
TTransactionName = Class(TSQLHandle)
protected
end;
{ TCursorName }
TCursorName = Class(TSQLCursor)
protected
FRes: PMYSQL_RES; { Record pointer }
FStatement : String;
Row : MYSQL_ROW;
Lengths : pculong; { Lengths of the columns of the current row }
RowsAffected : QWord;
LastInsertID : QWord;
ParamBinding : TParamBinding;
ParamReplaceString : String;
MapDSRowToMSQLRow : array of integer;
end;
{ TConnectionName }
TConnectionName = class (TSQLConnection)
private
FHostInfo: String;
FServerInfo: String;
FMySQL : PMySQL;
function GetClientInfo: string;
function GetServerStatus: String;
procedure ConnectMySQL(var HMySQL: PMySQL);
procedure ExecuteDirectMySQL(const query : string);
function EscapeString(const Str : string) : string;
protected
Procedure ConnectToServer; virtual;
Procedure SelectDatabase; virtual;
function MySQLDataType(AField: PMYSQL_FIELD; var NewType: TFieldType; var NewSize: Integer): Boolean;
function MySQLWriteData(AField: PMYSQL_FIELD; FieldDef: TFieldDef; Source, Dest: PChar; Len: integer; out CreateBlob : boolean): Boolean;
// SQLConnection methods
procedure DoInternalConnect; override;
procedure DoInternalDisconnect; override;
function GetHandle : pointer; override;
function GetAsSQLText(Field : TField) : string; overload; override;
function GetAsSQLText(Param : TParam) : string; overload; override;
Function AllocateCursorHandle : TSQLCursor; override;
Procedure DeAllocateCursorHandle(var cursor : TSQLCursor); override;
Function AllocateTransactionHandle : TSQLHandle; override;
function StrToStatementType(s : string) : TStatementType; override;
procedure PrepareStatement(cursor: TSQLCursor;ATransaction : TSQLTransaction;buf : string; AParams : TParams); override;
procedure UnPrepareStatement(cursor:TSQLCursor); override;
procedure FreeFldBuffers(cursor : TSQLCursor); override;
procedure Execute(cursor: TSQLCursor;atransaction:tSQLtransaction;AParams : TParams); override;
procedure AddFieldDefs(cursor: TSQLCursor; FieldDefs : TfieldDefs); override;
function Fetch(cursor : TSQLCursor) : boolean; override;
function LoadField(cursor : TSQLCursor;FieldDef : TfieldDef;buffer : pointer; out CreateBlob : boolean) : boolean; override;
procedure LoadBlobIntoBuffer(FieldDef: TFieldDef;ABlobBuf: PBufBlobField; cursor: TSQLCursor;ATransaction : TSQLTransaction); override;
function GetTransactionHandle(trans : TSQLHandle): pointer; override;
function Commit(trans : TSQLHandle) : boolean; override;
function RollBack(trans : TSQLHandle) : boolean; override;
function StartdbTransaction(trans : TSQLHandle; AParams : string) : boolean; override;
procedure CommitRetaining(trans : TSQLHandle); override;
procedure RollBackRetaining(trans : TSQLHandle); override;
function GetSchemaInfoSQL(SchemaType : TSchemaType; SchemaObjectName, SchemaPattern : string) : string; override;
procedure UpdateIndexDefs(IndexDefs : TIndexDefs;TableName : string); override;
function RowsAffected(cursor: TSQLCursor): TRowsCount; override;
function RefreshLastInsertID(Query : TCustomSQLQuery; Field : TField): Boolean; override;
Public
constructor Create(AOwner : TComponent); override;
procedure GetFieldNames(const TableName : string; List : TStrings); override;
procedure GetTableNames(List : TStrings; SystemTables : Boolean = false); override;
function GetConnectionInfo(InfoType:TConnInfoType): string; override;
Function GetInsertID: int64;
procedure CreateDB; override;
procedure DropDB; override;
Property ServerInfo : String Read FServerInfo;
Property HostInfo : String Read FHostInfo;
property ClientInfo: string read GetClientInfo;
property ServerStatus : String read GetServerStatus;
published
property DatabaseName;
property HostName;
property KeepConnection;
property LoginPrompt;
property Params;
property Port stored false;
property OnLogin;
end;
{ TMySQLConnectionDef }
TMySQLConnectionDef = Class(TConnectionDef)
Class Function TypeName : String; override;
Class Function ConnectionClass : TSQLConnectionClass; override;
Class Function Description : String; override;
Class Function DefaultLibraryName : String; override;
Class Function LoadFunction : TLibraryLoadFunction; override;
Class Function UnLoadFunction : TLibraryUnLoadFunction; override;
Class Function LoadedLibraryName : string; override;
end;
{$IFDEF mysql56}
TMySQL56Connection = Class(TConnectionName);
TMySQL56ConnectionDef = Class(TMySQLConnectionDef);
TMySQL56Transaction = Class(TTransactionName);
TMySQL56Cursor = Class(TCursorName);
{$ELSE}
{$ifdef mysql55}
TMySQL55Connection = Class(TConnectionName);
TMySQL55ConnectionDef = Class(TMySQLConnectionDef);
TMySQL55Transaction = Class(TTransactionName);
TMySQL55Cursor = Class(TCursorName);
{$else}
{$IfDef mysql51}
TMySQL51Connection = Class(TConnectionName);
TMySQL51ConnectionDef = Class(TMySQLConnectionDef);
TMySQL51Transaction = Class(TTransactionName);
TMySQL51Cursor = Class(TCursorName);
{$ELSE}
{$IfDef mysql50}
TMySQL50Connection = Class(TConnectionName);
TMySQL50ConnectionDef = Class(TMySQLConnectionDef);
TMySQL50Transaction = Class(TTransactionName);
TMySQL50Cursor = Class(TCursorName);
{$ELSE}
{$IfDef mysql41}
TMySQL41Connection = Class(TConnectionName);
TMySQL41ConnectionDef = Class(TMySQLConnectionDef);
TMySQL41Transaction = Class(TTransactionName);
TMySQL41Cursor = Class(TCursorName);
{$ELSE}
TMySQL40Connection = Class(TConnectionName);
TMySQL40ConnectionDef = Class(TMySQLConnectionDef);
TMySQL40Transaction = Class(TTransactionName);
TMySQL40Cursor = Class(TCursorName);
{$EndIf}
{$endif}
{$EndIf}
{$ENDIF}
{$ENDIF}
implementation
uses
dbconst,
strutils,
dateutils,
FmtBCD;
const
Mysql_Option_Names : array[mysql_option] of string = ('MYSQL_OPT_CONNECT_TIMEOUT','MYSQL_OPT_COMPRESS',
'MYSQL_OPT_NAMED_PIPE','MYSQL_INIT_COMMAND',
'MYSQL_READ_DEFAULT_FILE','MYSQL_READ_DEFAULT_GROUP',
'MYSQL_SET_CHARSET_DIR','MYSQL_SET_CHARSET_NAME',
'MYSQL_OPT_LOCAL_INFILE','MYSQL_OPT_PROTOCOL',
'MYSQL_SHARED_MEMORY_BASE_NAME','MYSQL_OPT_READ_TIMEOUT',
'MYSQL_OPT_WRITE_TIMEOUT','MYSQL_OPT_USE_RESULT',
'MYSQL_OPT_USE_REMOTE_CONNECTION','MYSQL_OPT_USE_EMBEDDED_CONNECTION',
'MYSQL_OPT_GUESS_CONNECTION','MYSQL_SET_CLIENT_IP',
'MYSQL_SECURE_AUTH'
{$IFDEF MYSQL50_UP}
,'MYSQL_REPORT_DATA_TRUNCATION', 'MYSQL_OPT_RECONNECT'
{$IFDEF mysql51_UP}
,'MYSQL_OPT_SSL_VERIFY_SERVER_CERT'
{$IFDEF mysql55_UP}
,'MYSQL_PLUGIN_DIR', 'MYSQL_DEFAULT_AUTH'
{$IFDEF MYSQL56_UP}
,'MYSQL_OPT_BIND'
,'MYSQL_OPT_SSL_KEY', 'MYSQL_OPT_SSL_CERT', 'MYSQL_OPT_SSL_CA', 'MYSQL_OPT_SSL_CAPATH', 'MYSQL_OPT_SSL_CIPHER', 'MYSQL_OPT_SSL_CRL', 'MYSQL_OPT_SSL_CRLPATH'
,'MYSQL_OPT_CONNECT_ATTR_RESET', 'MYSQL_OPT_CONNECT_ATTR_ADD', 'MYSQL_OPT_CONNECT_ATTR_DELETE'
,'MYSQL_SERVER_PUBLIC_KEY'
,'MYSQL_ENABLE_CLEARTEXT_PLUGIN'
,'MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS'
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
);
Resourcestring
SErrServerConnectFailed = 'Server connect failed.';
SErrSetCharsetFailed = 'Failed to set connection character set: %s';
SErrDatabaseSelectFailed = 'Failed to select database: %s';
SErrDatabaseCreate = 'Failed to create database: %s';
SErrDatabaseDrop = 'Failed to drop database: %s';
SErrNoData = 'No data for record';
SErrExecuting = 'Error executing query: %s';
SErrFetchingdata = 'Error fetching row data: %s';
SErrGettingResult = 'Error getting result set: %s';
SErrNoQueryResult = 'No result from query.';
SErrVersionMismatch = '%s can not work with the installed MySQL client version: Expected (%s), got (%s).';
SErrSettingParameter = 'Error setting parameter "%s"';
Procedure MySQLError(R : PMySQL; Msg: String; Comp : TComponent);
Var
MySQLError, MySQLState : String;
MySQLErrno: integer;
begin
If (R<>Nil) then
begin
MySQLError:=StrPas(mysql_error(R));
MySQLErrno:=mysql_errno(R);
MySQLState:=StrPas(mysql_sqlstate(R));
end
else
begin
MySQLError:='';
MySQLErrno:=0;
MySQLState:='';
end;
raise ESQLDatabaseError.CreateFmt(Msg, [MySQLError], Comp, MySQLErrno, MySQLState);
end;
function MysqlOption(const OptionName: string; out AMysql_Option: mysql_option) : boolean;
var AMysql_Option_i: mysql_option;
begin
result := false;
for AMysql_Option_i:=low(AMysql_Option) to high(AMysql_Option) do
if sametext(Mysql_Option_Names[AMysql_Option_i],OptionName) then
begin
result := true;
AMysql_Option:=AMysql_Option_i;
break;
end;
end;
{ TConnectionName }
function TConnectionName.StrToStatementType(s : string) : TStatementType;
begin
s:=Lowercase(s);
if (s='analyze') or (s='check') or (s='checksum') or (s='optimize') or (s='repair') or (s='show') then
exit(stSelect)
else if s='call' then
exit(stExecProcedure)
else
Result := inherited StrToStatementType(s);
end;
function TConnectionName.GetClientInfo: string;
begin
// To make it possible to call this if there's no connection yet
InitialiseMysql;
Try
Result:=strpas(mysql_get_client_info());
Finally
ReleaseMysql;
end;
end;
function TConnectionName.GetServerStatus: String;
begin
CheckConnected;
Result := mysql_stat(FMYSQL);
end;
Function TConnectionName.GetInsertID: int64;
begin
CheckConnected;
Result:=mysql_insert_id(GetHandle);
end;
procedure TConnectionName.ConnectMySQL(var HMySQL: PMySQL);
Var
APort : Cardinal;
i,e: integer;
AMysql_Option: mysql_option;
OptStr: string;
OptInt: cuint;
Opt: pointer;
begin
HMySQL := mysql_init(HMySQL);
APort:=Abs(StrToIntDef(Params.Values['Port'],0));
for i := 0 to Params.Count-1 do
begin
if MysqlOption(Params.Names[i],AMysql_Option) then
begin
OptStr:=Params.ValueFromIndex[i];
val(OptStr,OptInt,e);
if e=0 then
Opt := @OptInt
else
Opt := pchar(OptStr);
if mysql_options(HMySQL,AMysql_Option,Opt) <> 0 then
MySQLError(HMySQL,Format(SErrSettingParameter,[Params.Names[i]]),Self);
end;
end;
HMySQL:=mysql_real_connect(HMySQL,PChar(HostName),PChar(UserName),PChar(Password),Nil,APort,Nil,CLIENT_MULTI_RESULTS); //CLIENT_MULTI_RESULTS is required by CALL SQL statement(executes stored procedure), that produces result sets
If (HMySQL=Nil) then
MySQLError(Nil,SErrServerConnectFailed,Self);
if (trim(CharSet) <> '') then
// major_version*10000 + minor_version *100 + sub_version
if (50007 <= mysql_get_server_version(HMySQL)) then
begin
// Only available for MySQL 5.0.7 and later...
if mysql_set_character_set(HMySQL, PChar(CharSet)) <> 0 then
MySQLError(HMySQL,SErrSetCharsetFailed,Self);
end
else
if mysql_query(HMySQL,PChar('SET NAMES ''' + EscapeString(CharSet) +'''')) <> 0 then
MySQLError(HMySQL,SErrExecuting,Self);
end;
function TConnectionName.GetAsSQLText(Field : TField) : string;
begin
if (not assigned(Field)) or Field.IsNull then
Result := 'Null'
else if Field.DataType = ftString then
Result := '''' + EscapeString(Field.AsString) + ''''
else
Result := inherited GetAsSqlText(Field);
end;
function TConnectionName.GetAsSQLText(Param: TParam) : string;
begin
if (not assigned(Param)) or Param.IsNull then
Result := 'Null'
else if Param.DataType in [ftString,ftFixedChar,ftBlob,ftMemo,ftBytes,ftVarBytes] then
Result := '''' + EscapeString(Param.AsString) + ''''
else
Result := inherited GetAsSqlText(Param);
end;
Procedure TConnectionName.ConnectToServer;
begin
ConnectMySQL(FMySQL);
FServerInfo := strpas(mysql_get_server_info(FMYSQL));
FHostInfo := strpas(mysql_get_host_info(FMYSQL));
end;
Procedure TConnectionName.SelectDatabase;
begin
if mysql_select_db(FMySQL,pchar(DatabaseName))<>0 then
MySQLError(FMySQL,SErrDatabaseSelectFailed,Self);
end;
procedure TConnectionName.CreateDB;
begin
ExecuteDirectMySQL('CREATE DATABASE ' +DatabaseName);
end;
procedure TConnectionName.DropDB;
begin
ExecuteDirectMySQL('DROP DATABASE ' +DatabaseName);
end;
procedure TConnectionName.ExecuteDirectMySQL(const query : string);
var AMySQL : PMySQL;
begin
CheckDisConnected;
InitialiseMysql;
try
AMySQL := nil;
ConnectMySQL(AMySQL);
try
if mysql_query(AMySQL,pchar(query))<>0 then
MySQLError(AMySQL,SErrExecuting,Self);
finally
mysql_close(AMySQL);
end;
finally
ReleaseMysql;
end;
end;
function TConnectionName.EscapeString(const Str: string): string;
var Len : integer;
begin
SetLength(result,length(str)*2+1);
Len := mysql_real_escape_string(FMySQL,pchar(Result),pchar(Str),length(Str));
SetLength(result,Len);
end;
procedure TConnectionName.DoInternalConnect;
var
FullVersion: string;
begin
InitialiseMysql;
Fullversion:=strpas(mysql_get_client_info());
// Version string should start with version number:
// Note: in case of MariaDB version mismatch: tough luck, we report MySQL
// version only.
if (pos(MySQLVersion, Fullversion) <> 1) and
(pos(MariaDBVersion, Fullversion) <> 1) then
Raise EInOutError.CreateFmt(SErrVersionMisMatch,[ClassName,MySQLVersion,FullVersion]);
inherited DoInternalConnect;
ConnectToServer;
SelectDatabase;
end;
procedure TConnectionName.DoInternalDisconnect;
begin
inherited DoInternalDisconnect;
mysql_close(FMySQL);
FMySQL:=Nil;
ReleaseMysql;
end;
function TConnectionName.GetHandle: pointer;
begin
Result:=FMySQL;
end;
Function TConnectionName.AllocateCursorHandle: TSQLCursor;
begin
{$IFDEF mysql56}
Result:=TMySQL56Cursor.Create;
{$ELSE}
{$IfDef mysql55}
Result:=TMySQL55Cursor.Create;
{$ELSE}
{$IfDef mysql51}
Result:=TMySQL51Cursor.Create;
{$ELSE}
{$IfDef mysql50}
Result:=TMySQL50Cursor.Create;
{$ELSE}
{$IfDef mysql41}
Result:=TMySQL41Cursor.Create;
{$ELSE}
Result:=TMySQL40Cursor.Create;
{$EndIf}
{$EndIf}
{$EndIf}
{$EndIf}
{$ENDIF}
end;
Procedure TConnectionName.DeAllocateCursorHandle(var cursor : TSQLCursor);
begin
FreeAndNil(cursor);
end;
Function TConnectionName.AllocateTransactionHandle: TSQLHandle;
begin
// Result:=TTransactionName.Create;
Result := nil;
end;
procedure TConnectionName.PrepareStatement(cursor: TSQLCursor;
ATransaction: TSQLTransaction; buf: string;AParams : TParams);
begin
// if assigned(AParams) and (AParams.count > 0) then
// DatabaseError('Parameters (not) yet supported for the MySQL SqlDB connection.',self);
With Cursor as TCursorName do
begin
FStatement:=Buf;
if assigned(AParams) and (AParams.count > 0) then
FStatement := AParams.ParseSQL(FStatement,false,sqEscapeSlash in ConnOptions, sqEscapeRepeat in ConnOptions,psSimulated,paramBinding,ParamReplaceString);
end
end;
procedure TConnectionName.UnPrepareStatement(cursor: TSQLCursor);
Var
C : TCursorName;
begin
C:=Cursor as TCursorName;
if assigned(C.FRes) then //ExecSQL with dataset returned
begin
mysql_free_result(C.FRes);
C.FRes:=nil;
end;
end;
procedure TConnectionName.FreeFldBuffers(cursor: TSQLCursor);
Var
C : TCursorName;
begin
C:=Cursor as TCursorName;
if assigned(C.FRes) then
begin
mysql_free_result(C.FRes);
C.FRes:=Nil;
end;
SetLength(c.MapDSRowToMSQLRow,0);
inherited;
end;
procedure TConnectionName.Execute(cursor: TSQLCursor;
atransaction: tSQLtransaction;AParams : TParams);
Var
C : TCursorName;
i : integer;
ParamNames,ParamValues : array of string;
Res: PMYSQL_RES;
begin
C:=Cursor as TCursorName;
If (C.FRes=Nil) then
begin
if Assigned(AParams) and (AParams.count > 0) then
begin
setlength(ParamNames,AParams.Count);
setlength(ParamValues,AParams.Count);
for i := 0 to AParams.count -1 do
begin
ParamNames[AParams.count-i-1] := C.ParamReplaceString+inttostr(AParams[i].Index+1);
ParamValues[AParams.count-i-1] := GetAsSQLText(AParams[i]);
end;
// paramreplacestring kan een probleem geven bij postgres als hij niet meer gewoon $ is?
C.FStatement := stringsreplace(C.FStatement,ParamNames,ParamValues,[rfReplaceAll]);
end;
Log(detExecute, C.FStatement);
if mysql_query(FMySQL,Pchar(C.FStatement))<>0 then
begin
if not ForcedClose then
MySQLError(FMYSQL,SErrExecuting,Self)
else //don't return a resulset. We are shutting down, not opening.
begin
C.RowsAffected:=0;
C.FSelectable:= False;
C.FRes:=nil;
end;
end
else
begin
C.RowsAffected := mysql_affected_rows(FMYSQL);
C.LastInsertID := mysql_insert_id(FMYSQL);
C.FSelectable := False;
repeat
Res:=mysql_store_result(FMySQL); //returns a null pointer also if the statement didn't return a result set
if mysql_errno(FMySQL)<>0 then
begin
if not ForcedClose then
MySQLError(FMySQL, SErrGettingResult, Self)
else
begin
C.RowsAffected:=0;
C.FSelectable:= False;
C.FRes:=nil;
break;
end;
end;
if Res<>nil then
begin
mysql_free_result(C.FRes);
C.FRes:=Res;
C.FSelectable:=True;
end;
until mysql_next_result(FMySQL)<>0;
end;
end;
end;
function TConnectionName.MySQLDataType(AField: PMYSQL_FIELD; var NewType: TFieldType; var NewSize: Integer): Boolean;
var ASize, ADecimals: integer;
begin
Result := True;
ASize := AField^.length;
NewSize := 0;
case AField^.ftype of
FIELD_TYPE_LONGLONG:
begin
NewType := ftLargeint;
end;
FIELD_TYPE_TINY, FIELD_TYPE_SHORT, FIELD_TYPE_YEAR:
begin
if AField^.flags and UNSIGNED_FLAG <> 0 then
NewType := ftWord
else
NewType := ftSmallint;
end;
FIELD_TYPE_LONG, FIELD_TYPE_INT24:
begin
if AField^.flags and AUTO_INCREMENT_FLAG <> 0 then
NewType := ftAutoInc
else
NewType := ftInteger;
end;
{$ifdef mysql50_up}
FIELD_TYPE_NEWDECIMAL,
{$endif}
FIELD_TYPE_DECIMAL:
begin
ADecimals:=AField^.decimals;
if (ADecimals < 5) and (ASize-2-ADecimals < 15) then //ASize is display size i.e. with sign and decimal point
NewType := ftBCD
else if (ADecimals = 0) and (ASize < 20) then
NewType := ftLargeInt
else
NewType := ftFmtBCD;
NewSize := ADecimals;
end;
FIELD_TYPE_FLOAT, FIELD_TYPE_DOUBLE:
begin
NewType := ftFloat;
end;
FIELD_TYPE_TIMESTAMP, FIELD_TYPE_DATETIME:
begin
NewType := ftDateTime;
end;
FIELD_TYPE_DATE:
begin
NewType := ftDate;
end;
FIELD_TYPE_TIME:
begin
NewType := ftTime;
end;
FIELD_TYPE_VAR_STRING, FIELD_TYPE_STRING, FIELD_TYPE_ENUM, FIELD_TYPE_SET:
begin
// Since mysql server version 5.0.3 string-fields with a length of more
// then 256 characters are suported
if AField^.ftype = FIELD_TYPE_STRING then
NewType := ftFixedChar
else
NewType := ftString;
{$IFDEF MYSQL50_UP}
if AField^.charsetnr = 63 then //BINARY vs. CHAR, VARBINARY vs. VARCHAR
if NewType = ftFixedChar then
NewType := ftBytes
else
NewType := ftVarBytes;
{$ENDIF}
NewSize := ASize;
end;
FIELD_TYPE_TINY_BLOB..FIELD_TYPE_BLOB:
begin
{$IFDEF MYSQL50_UP}
if AField^.charsetnr = 63 then //character set is binary
NewType := ftBlob
else
NewType := ftMemo;
{$ELSE}
NewType := ftBlob;
{$ENDIF}
end;
{$IFDEF MYSQL50_UP}
FIELD_TYPE_BIT:
NewType := ftLargeInt;
{$ENDIF}
else
Result := False;
end;
end;
procedure TConnectionName.AddFieldDefs(cursor: TSQLCursor;
FieldDefs: TfieldDefs);
var
C : TCursorName;
I, TF, FC: Integer;
field: PMYSQL_FIELD;
DFT: TFieldType;
DFS: Integer;
begin
// Writeln('MySQL: Adding fielddefs');
C:=(Cursor as TCursorName);
If (C.FRes=Nil) then
begin
// Writeln('res is nil');
MySQLError(FMySQL,SErrNoQueryResult,Self);
end;
// Writeln('MySQL: have result');
FC:=mysql_num_fields(C.FRes);
SetLength(c.MapDSRowToMSQLRow,FC);
TF := 1;
For I:= 0 to FC-1 do
begin
field := mysql_fetch_field_direct(C.FRES, I);
// Writeln('MySQL: creating fielddef ',I+1);
if MySQLDataType(field, DFT, DFS) then
begin
FieldDefs.Add(FieldDefs.MakeNameUnique(field^.name), DFT, DFS,
(field^.flags and (AUTO_INCREMENT_FLAG or NOT_NULL_FLAG {$IFDEF MYSQL50_UP}or NO_DEFAULT_VALUE_FLAG{$ENDIF})) = (NOT_NULL_FLAG {$IFDEF MYSQL50_UP}or NO_DEFAULT_VALUE_FLAG{$ENDIF}),
TF);
c.MapDSRowToMSQLRow[TF-1] := I;
inc(TF);
end
end;
// Writeln('MySQL: Finished adding fielddefs');
end;
function TConnectionName.Fetch(cursor: TSQLCursor): boolean;
Var
C : TCursorName;
begin
C:=Cursor as TCursorName;
C.Row:=MySQL_Fetch_row(C.FRes);
Result:=(C.Row<>Nil);
if Result then
C.Lengths := mysql_fetch_lengths(C.FRes)
else
C.Lengths := nil;
end;
function TConnectionName.LoadField(cursor : TSQLCursor;
FieldDef : TfieldDef;buffer : pointer; out CreateBlob : boolean) : boolean;
var
field: PMYSQL_FIELD;
C : TCursorName;
i : integer;
begin
// Writeln('LoadFieldsFromBuffer');
C:=Cursor as TCursorName;
if (C.Row=nil) or (C.Lengths=nil) then
begin
// Writeln('LoadFieldsFromBuffer: row=nil');
MySQLError(FMySQL,SErrFetchingData,Self);
end;
i := c.MapDSRowToMSQLRow[FieldDef.FieldNo-1];
field := mysql_fetch_field_direct(C.FRES, i);
Result := MySQLWriteData(field, FieldDef, C.Row[i], Buffer, C.Lengths[i], CreateBlob);
end;
procedure TConnectionName.LoadBlobIntoBuffer(FieldDef: TFieldDef;
ABlobBuf: PBufBlobField; cursor: TSQLCursor; ATransaction: TSQLTransaction);
var
C : TCursorName;
i : integer;
len : longint;
begin
C:=Cursor as TCursorName;
if (C.Row=nil) or (C.Lengths=nil) then
MySQLError(FMySQL,SErrFetchingData,Self);
i := c.MapDSRowToMSQLRow[FieldDef.FieldNo-1];
len := C.Lengths[i];
ReAllocMem(ABlobBuf^.BlobBuffer^.Buffer, len);
Move(C.Row[i]^, ABlobBuf^.BlobBuffer^.Buffer^, len);
ABlobBuf^.BlobBuffer^.Size := len;
end;
function InternalStrToInt(const S: string): integer;
begin
if S = '' then
Result := 0
else
Result := StrToInt(S);
end;
function InternalStrToFloat(S: string): Extended;
var
I: Integer;
Tmp: string;
begin
Tmp := '';
for I := 1 to Length(S) do
begin
if not (S[I] in ['0'..'9', '+', '-', 'E', 'e']) then
Tmp := Tmp + FormatSettings.DecimalSeparator
else
Tmp := Tmp + S[I];
end;
Result := StrToFloat(Tmp);
end;
function InternalStrToCurrency(S: string): Extended;
var
I: Integer;
Tmp: string;
begin
Tmp := '';
for I := 1 to Length(S) do
begin
if not (S[I] in ['0'..'9', '+', '-', 'E', 'e']) then
Tmp := Tmp + FormatSettings.DecimalSeparator
else
Tmp := Tmp + S[I];
end;
Result := StrToCurr(Tmp);
end;
function InternalStrToDate(S: string): TDateTime;
var
EY, EM, ED: Word;
begin
EY := StrToInt(Copy(S,1,4));
EM := StrToInt(Copy(S,6,2));
ED := StrToInt(Copy(S,9,2));
if (EY = 0) or (EM = 0) or (ED = 0) then
Result:=0
else
Result:=EncodeDate(EY, EM, ED);
end;
function InternalStrToDateTime(S: string): TDateTime;
var
EY, EM, ED: Word;
EH, EN, ES: Word;
begin
EY := StrToInt(Copy(S, 1, 4));
EM := StrToInt(Copy(S, 6, 2));
ED := StrToInt(Copy(S, 9, 2));
EH := StrToInt(Copy(S, 12, 2));
EN := StrToInt(Copy(S, 15, 2));
ES := StrToInt(Copy(S, 18, 2));
if (EY = 0) or (EM = 0) or (ED = 0) then
Result := 0
else
Result := EncodeDate(EY, EM, ED);
Result := ComposeDateTime(Result,EncodeTime(EH, EN, ES, 0));
end;
function InternalStrToTime(S: string): TDateTime;
var
EH, EM, ES: Word;
p: integer;
begin
p := 1;
EH := StrToInt(ExtractSubstr(S, p, [':'])); //hours can be 2 or 3 digits
EM := StrToInt(ExtractSubstr(S, p, [':']));
ES := StrToInt(ExtractSubstr(S, p, ['.']));
Result := EncodeTimeInterval(EH, EM, ES, 0);
end;
function InternalStrToTimeStamp(S: string): TDateTime;
var
EY, EM, ED: Word;
EH, EN, ES: Word;
begin
{$IFNDEF mysql40}
EY := StrToInt(Copy(S, 1, 4));
EM := StrToInt(Copy(S, 6, 2));
ED := StrToInt(Copy(S, 9, 2));
EH := StrToInt(Copy(S, 12, 2));
EN := StrToInt(Copy(S, 15, 2));
ES := StrToInt(Copy(S, 18, 2));
{$ELSE}
EY := StrToInt(Copy(S, 1, 4));
EM := StrToInt(Copy(S, 5, 2));
ED := StrToInt(Copy(S, 7, 2));
EH := StrToInt(Copy(S, 9, 2));
EN := StrToInt(Copy(S, 11, 2));
ES := StrToInt(Copy(S, 13, 2));
{$ENDIF}
if (EY = 0) or (EM = 0) or (ED = 0) then
Result := 0
else
Result := EncodeDate(EY, EM, ED);
Result := Result + EncodeTime(EH, EN, ES, 0);
end;
function TConnectionName.MySQLWriteData(AField: PMYSQL_FIELD; FieldDef: TFieldDef; Source, Dest: PChar; Len: integer; out CreateBlob : boolean): Boolean;
var
VI: Integer;
VL: LargeInt;
VS: Smallint;
VW: Word;
VF: Double;
VC: Currency;
VD: TDateTime;
VB: TBCD;
Src : String;
begin
Result := False;
CreateBlob := False;
if Source = Nil then // If the pointer is NULL, the field is NULL
exit;
SetString(Src, Source, Len);
if Len > FieldDef.Size then
Len := FieldDef.Size;
case FieldDef.DataType of
ftSmallint:
begin
VS := InternalStrToInt(Src);
Move(VS, Dest^, SizeOf(Smallint));
end;
ftWord:
begin
VW := InternalStrToInt(Src);
Move(VW, Dest^, SizeOf(Word));
end;
ftInteger, ftAutoInc:
begin
VI := InternalStrToInt(Src);
Move(VI, Dest^, SizeOf(Integer));
end;
ftLargeInt:
begin
{$IFDEF MYSQL50_UP}
if AField^.ftype = FIELD_TYPE_BIT then
begin
VL := 0;
for VI := 0 to Len-1 do
VL := VL * 256 + PByte(Source+VI)^;
end
else
{$ENDIF}
if Src <> '' then
VL := StrToInt64(Src)
else
VL := 0;
Move(VL, Dest^, SizeOf(LargeInt));
end;
ftFloat:
begin
if Src <> '' then
VF := InternalStrToFloat(Src)
else
VF := 0;
Move(VF, Dest^, SizeOf(Double));
end;
ftBCD:
begin
VC := InternalStrToCurrency(Src);
Move(VC, Dest^, SizeOf(Currency));
end;
ftFmtBCD:
begin
VB := StrToBCD(Src, FSQLFormatSettings);
Move(VB, Dest^, SizeOf(TBCD));
end;
ftDate:
begin
if Src <> '' then
VD := InternalStrToDate(Src)
else
VD := 0;
Move(VD, Dest^, SizeOf(TDateTime));
end;
ftTime:
begin
if Src <> '' then
VD := InternalStrToTime(Src)
else
VD := 0;
Move(VD, Dest^, SizeOf(TDateTime));
end;
ftDateTime:
begin
if Src <> '' then
if AField^.ftype = FIELD_TYPE_TIMESTAMP then
VD := InternalStrToTimeStamp(Src)
else
VD := InternalStrToDateTime(Src)
else
VD := 0;
Move(VD, Dest^, SizeOf(TDateTime));
end;
ftString, ftFixedChar:
// String-fields which can contain more then dsMaxStringSize characters
// are mapped to ftBlob fields, while their mysql-datatype is FIELD_TYPE_BLOB
begin
Move(Source^, Dest^, Len);
(Dest+Len)^ := #0;
end;
ftVarBytes:
begin
PWord(Dest)^ := Len;
Move(Source^, (Dest+sizeof(Word))^, Len);
end;
ftBytes:
Move(Source^, Dest^, Len);
ftBlob, ftMemo:
CreateBlob := True;
end;
Result := True;
end;
procedure TConnectionName.UpdateIndexDefs(IndexDefs : TIndexDefs;TableName : string);
var qry : TSQLQuery;
begin
if not assigned(Transaction) then
DatabaseError(SErrConnTransactionnSet);
qry := tsqlquery.Create(nil);
qry.transaction := Transaction;
qry.database := Self;
with qry do
begin
ParseSQL := False;
sql.clear;
sql.add('show index from ' + TableName);
open;
end;
while not qry.eof do with IndexDefs.AddIndexDef do
begin
Name := trim(qry.fieldbyname('Key_name').asstring);
Fields := trim(qry.fieldbyname('Column_name').asstring);
If Name = 'PRIMARY' then options := options + [ixPrimary];
If qry.fieldbyname('Non_unique').asinteger = 0 then options := options + [ixUnique];
qry.next;
while (name = trim(qry.fieldbyname('Key_name').asstring)) and (not qry.eof) do
begin
Fields := Fields + ';' + trim(qry.fieldbyname('Column_name').asstring);
qry.next;
end;
end;
qry.close;
qry.free;
end;
function TConnectionName.RowsAffected(cursor: TSQLCursor): TRowsCount;
begin
if assigned(cursor) then
// Compile this without range-checking. RowsAffected can be -1, although
// it's an unsigned integer. (small joke from the mysql-guys)
// Without range-checking this goes ok. If Range is turned on, this results
// in range-check errors.
Result := (cursor as TCursorName).RowsAffected
else
Result := -1;
end;
function TConnectionName.RefreshLastInsertID(Query: TCustomSQLQuery; Field: TField): Boolean;
begin
Field.AsLargeInt:=GetInsertID;
Result := True;
end;
constructor TConnectionName.Create(AOwner: TComponent);
const SingleBackQoutes: TQuoteChars = ('`','`');
begin
inherited Create(AOwner);
FConnOptions := [sqEscapeRepeat, sqEscapeSlash, sqImplicitTransaction, sqLastInsertID];
FieldNameQuoteChars:=SingleBackQoutes;
FMySQL := Nil;
end;
procedure TConnectionName.GetFieldNames(const TableName: string; List: TStrings);
begin
GetDBInfo(stColumns,TableName,'field',List);
end;
procedure TConnectionName.GetTableNames(List: TStrings; SystemTables: Boolean);
begin
GetDBInfo(stTables,'','tables_in_'+DatabaseName,List)
end;
function TConnectionName.GetConnectionInfo(InfoType: TConnInfoType): string;
begin
Result:='';
try
InitialiseMysql;
case InfoType of
citServerType:
Result:='MySQL';
citServerVersion:
if Connected then
Result:=format('%6.6d', [mysql_get_server_version(FMySQL)]);
citServerVersionString:
if Connected then
Result:=mysql_get_server_info(FMySQL);
citClientVersion:
Result:=format('%6.6d', [mysql_get_client_version()]);
citClientName:
Result:=TMySQLConnectionDef.LoadedLibraryName;
else
Result:=inherited GetConnectionInfo(InfoType);
end;
finally
ReleaseMysql;
end;
end;
function TConnectionName.GetTransactionHandle(trans: TSQLHandle): pointer;
begin
Result:=Nil;
end;
function TConnectionName.Commit(trans: TSQLHandle): boolean;
begin
//mysql_commit(FMySQL);
Result := (mysql_query(FMySQL, 'COMMIT') = 0) or ForcedClose;
if not Result then
MySQLError(FMySQL, SErrExecuting, Self);
end;
function TConnectionName.RollBack(trans: TSQLHandle): boolean;
begin
//mysql_rollback(FMySQL);
Result := (mysql_query(FMySQL, 'ROLLBACK') = 0) or ForcedClose;
if not Result then
MySQLError(FMySQL, SErrExecuting, Self);
end;
function TConnectionName.StartdbTransaction(trans: TSQLHandle; AParams : string): boolean;
begin
Result := mysql_query(FMySQL, 'START TRANSACTION') = 0;
if not Result then
MySQLError(FMySQL, SErrExecuting, Self);
end;
procedure TConnectionName.CommitRetaining(trans: TSQLHandle);
begin
{$IFDEF MYSQL50_UP}
if mysql_query(FMySQL, 'COMMIT AND CHAIN') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
{$ELSE}
if mysql_query(FMySQL, 'COMMIT') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
if mysql_query(FMySQL, 'START TRANSACTION') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
{$ENDIF}
end;
procedure TConnectionName.RollBackRetaining(trans: TSQLHandle);
begin
{$IFDEF MYSQL50_UP}
if mysql_query(FMySQL, 'ROLLBACK AND CHAIN') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
{$ELSE}
if mysql_query(FMySQL, 'ROLLBACK') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
if mysql_query(FMySQL, 'START TRANSACTION') <> 0 then
MySQLError(FMySQL, SErrExecuting, Self);
{$ENDIF}
end;
function TConnectionName.GetSchemaInfoSQL(SchemaType: TSchemaType;
SchemaObjectName, SchemaPattern: string): string;
begin
case SchemaType of
stTables : result := 'show tables';
stColumns : result := 'show columns from ' + EscapeString(SchemaObjectName);
else
DatabaseError(SMetadataUnavailable)
end; {case}
end;
{ TMySQLConnectionDef }
class function TMySQLConnectionDef.TypeName: String;
begin
Result:='MySQL '+MySQLVersion;
end;
class function TMySQLConnectionDef.ConnectionClass: TSQLConnectionClass;
begin
{$IFDEF mysql56}
Result:=TMySQL56Connection;
{$ELSE}
{$IfDef mysql55}
Result:=TMySQL55Connection;
{$ELSE}
{$IfDef mysql51}
Result:=TMySQL51Connection;
{$ELSE}
{$IfDef mysql50}
Result:=TMySQL50Connection;
{$ELSE}
{$IfDef mysql41}
Result:=TMySQL41Connection;
{$ELSE}
Result:=TMySQL40Connection;
{$EndIf}
{$EndIf}
{$endif}
{$endif}
{$ENDIF}
end;
class function TMySQLConnectionDef.Description: String;
begin
Result:='Connect to a MySQL '+MySQLVersion+'database directly via the client library';
end;
class function TMySQLConnectionDef.DefaultLibraryName: String;
begin
Result:=mysqlvlib;
end;
class function TMySQLConnectionDef.LoadFunction: TLibraryLoadFunction;
begin
Result:=@InitialiseMySQL;
end;
class function TMySQLConnectionDef.UnLoadFunction: TLibraryUnLoadFunction;
begin
Result:=@ReleaseMySQL;
end;
class function TMySQLConnectionDef.LoadedLibraryName: string;
begin
Result:=MysqlLoadedLibrary;
end;
{$IFDEF mysql56}
initialization
RegisterConnection(TMySQL56ConnectionDef);
finalization
UnRegisterConnection(TMySQL56ConnectionDef);
{$ELSE}
{$IfDef mysql55}
initialization
RegisterConnection(TMySQL55ConnectionDef);
finalization
UnRegisterConnection(TMySQL55ConnectionDef);
{$else}
{$IfDef mysql51}
initialization
RegisterConnection(TMySQL51ConnectionDef);
finalization
UnRegisterConnection(TMySQL51ConnectionDef);
{$ELSE}
{$IfDef mysql50}
initialization
RegisterConnection(TMySQL50ConnectionDef);
finalization
UnRegisterConnection(TMySQL50ConnectionDef);
{$ELSE}
{$IfDef mysql41}
initialization
RegisterConnection(TMySQL41ConnectionDef);
finalization
UnRegisterConnection(TMySQL41ConnectionDef);
{$ELSE}
initialization
RegisterConnection(TMySQL40ConnectionDef);
finalization
UnRegisterConnection(TMySQL40ConnectionDef);
{$EndIf}
{$EndIf}
{$ENDIF}
{$endif}
{$ENDIF}
end.
|