mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Add support for MSSQL datetime2 column type. See http://www.heidisql.com/forum.php?t=16708
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user