Support BIT data type in MS SQL. Fixes issue #2955.

This commit is contained in:
Ansgar Becker
2013-02-24 10:49:33 +00:00
parent d03ae628cc
commit 9841bc3f21
2 changed files with 18 additions and 2 deletions

View File

@ -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';