Add support for MSSQL datetime2 column type. See http://www.heidisql.com/forum.php?t=16708

This commit is contained in:
Ansgar Becker
2014-10-26 11:38:27 +00:00
parent 371421cb06
commit aade1a9abc

View File

@@ -815,7 +815,7 @@ var
);
MSSQLDatatypes: array [0..28] of TDBDatatype =
MSSQLDatatypes: array [0..29] of TDBDatatype =
(
(
Index: dtTinyint;
@@ -965,6 +965,16 @@ var
HasDefault: True;
Category: dtcTemporal;
),
(
Index: dtDatetime;
Name: 'DATETIME2';
Description: 'Date and time data from January 1,1 AD through December 31, 9999 AD, with an accuracy of three-hundredths of a second, or 3.33 milliseconds.';
HasLength: False;
RequiresLength: False;
HasBinary: False;
HasDefault: True;
Category: dtcTemporal;
),
(
Index: dtSmalldatetime;
Name: 'SMALLDATETIME';