mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 18:12:05 +08:00
This commit is contained in:
@ -248,7 +248,7 @@ type
|
|||||||
// MySQL data types
|
// MySQL data types
|
||||||
TDBDatatypeIndex = (dtTinyint, dtSmallint, dtMediumint, dtInt, dtBigint, dtSerial, dtBigSerial,
|
TDBDatatypeIndex = (dtTinyint, dtSmallint, dtMediumint, dtInt, dtBigint, dtSerial, dtBigSerial,
|
||||||
dtFloat, dtDouble, dtDecimal, dtNumeric, dtReal, dtDoublePrecision, dtMoney, dtSmallmoney,
|
dtFloat, dtDouble, dtDecimal, dtNumeric, dtReal, dtDoublePrecision, dtMoney, dtSmallmoney,
|
||||||
dtDate, dtTime, dtYear, dtDatetime, dtDatetime2, dtSmalldatetime, dtTimestamp, dtInterval,
|
dtDate, dtTime, dtYear, dtDatetime, dtDatetime2, dtDatetimeOffset, dtSmalldatetime, dtTimestamp, dtInterval,
|
||||||
dtChar, dtNchar, dtVarchar, dtNvarchar, dtTinytext, dtText, dtNtext, dtMediumtext, dtLongtext,
|
dtChar, dtNchar, dtVarchar, dtNvarchar, dtTinytext, dtText, dtNtext, dtMediumtext, dtLongtext,
|
||||||
dtJson, dtCidr, dtInet, dtMacaddr,
|
dtJson, dtCidr, dtInet, dtMacaddr,
|
||||||
dtBinary, dtVarbinary, dtTinyblob, dtBlob, dtMediumblob, dtLongblob, dtImage,
|
dtBinary, dtVarbinary, dtTinyblob, dtBlob, dtMediumblob, dtLongblob, dtImage,
|
||||||
@ -960,7 +960,7 @@ var
|
|||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
MSSQLDatatypes: array [0..32] of TDBDatatype =
|
MSSQLDatatypes: array [0..33] of TDBDatatype =
|
||||||
(
|
(
|
||||||
(
|
(
|
||||||
Index: dtUnknown;
|
Index: dtUnknown;
|
||||||
@ -1151,6 +1151,18 @@ var
|
|||||||
Format: 'yyyy-mm-dd hh:nn:ss.zzzzzzz';
|
Format: 'yyyy-mm-dd hh:nn:ss.zzzzzzz';
|
||||||
Category: dtcTemporal;
|
Category: dtcTemporal;
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
Index: dtDatetimeOffset;
|
||||||
|
Name: 'DATETIMEOFFSET';
|
||||||
|
Description: 'Defines a date that is combined with a time of a day that has time zone awareness and is based on a 24-hour clock.';
|
||||||
|
HasLength: False;
|
||||||
|
RequiresLength: False;
|
||||||
|
HasBinary: False;
|
||||||
|
HasDefault: True;
|
||||||
|
LoadPart: False;
|
||||||
|
Format: 'yyyy-mm-dd hh:nn:ss.zzzzzzz';
|
||||||
|
Category: dtcTemporal;
|
||||||
|
),
|
||||||
(
|
(
|
||||||
Index: dtSmalldatetime;
|
Index: dtSmalldatetime;
|
||||||
Name: 'SMALLDATETIME';
|
Name: 'SMALLDATETIME';
|
||||||
|
Reference in New Issue
Block a user