Поделиться через


Метод DataType.DateTimeOffset

Returns values for year, month, day, valid time of day between 00:00:00 and 23:59:59:9999999 and offset, in hours, from UTC. It has a length of at least 25 positions.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Shared Function DateTimeOffset ( _
    scale As Integer _
) As DataType
'Применение
Dim scale As Integer 
Dim returnValue As DataType 

returnValue = DataType.DateTimeOffset(scale)
public static DataType DateTimeOffset(
    int scale
)
public:
static DataType^ DateTimeOffset(
    int scale
)
static member DateTimeOffset : 
        scale:int -> DataType
public static function DateTimeOffset(
    scale : int
) : DataType

Параметры

Возвращаемое значение

Тип: Microsoft.SqlServer.Management.Smo.DataType
A DataType object value that specifies a DateTimeOffset definition in the data type.

Замечания

The DateTimeOffset object constructor is initialized with the scale value that determines the precision of the DateTimeOffset object.

Примеры

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.DateTimeOffset, 25)

PowerShell

$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::DateTimeOffset, 25)

См. также

Справочник

DataType Класс

Пространство имен Microsoft.SqlServer.Management.Smo