We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93924f commit e796ad1Copy full SHA for e796ad1
source/dbstructures.mysql.pas
@@ -332,7 +332,7 @@ TMySqlProvider = class(TSqlProvider)
332
333
334
// MySQL Data Type List and Properties
335
- MySQLDatatypes: array [0..41] of TDBDatatype =
+ MySQLDatatypes: array [0..42] of TDBDatatype =
336
(
337
338
Index: dbdtUnknown;
@@ -361,6 +361,19 @@ TMySqlProvider = class(TSqlProvider)
361
LoadPart: False;
362
Category: dtcInteger;
363
),
364
+ (
365
+ Index: dbdtBool;
366
+ NativeType: 1;
367
+ Name: 'BOOLEAN';
368
+ Description: 'Synonym of TINYINT(1)';
369
+ HasLength: False;
370
+ RequiresLength: False;
371
+ MaxSize: 127;
372
+ HasBinary: False;
373
+ HasDefault: True;
374
+ LoadPart: False;
375
+ Category: dtcInteger;
376
+ ),
377
378
Index: dbdtSmallint;
379
NativeType: 2;
0 commit comments