mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Support BIT data type in MS SQL. Fixes issue #2955.
This commit is contained in:
@ -812,7 +812,7 @@ var
|
||||
|
||||
);
|
||||
|
||||
MSSQLDatatypes: array [0..25] of TDBDatatype =
|
||||
MSSQLDatatypes: array [0..26] of TDBDatatype =
|
||||
(
|
||||
(
|
||||
Index: dtTinyint;
|
||||
@ -854,6 +854,16 @@ var
|
||||
HasDefault: True;
|
||||
Category: dtcInteger;
|
||||
),
|
||||
(
|
||||
Index: dtBit;
|
||||
Name: 'BIT';
|
||||
Description: '0 or 1';
|
||||
HasLength: False;
|
||||
RequiresLength: False;
|
||||
HasBinary: False;
|
||||
HasDefault: True;
|
||||
Category: dtcInteger;
|
||||
),
|
||||
(
|
||||
Index: dtDecimal;
|
||||
Name: 'DECIMAL';
|
||||
|
Reference in New Issue
Block a user