Udostępnij za pośrednictwem


Właściwość DataType.Int

Pobiera typ danych, który określa Int definicja używana w typie danych.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
Public Shared ReadOnly Property Int As DataType
    Get
'Użycie
Dim value As DataType

value = DataType.Int
public static DataType Int { get; }
public:
static property DataType^ Int {
    DataType^ get ();
}
static member Int : DataType
static function get Int () : DataType

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Smo.DataType
A DataType Określa wartość obiektu Int definicji typu danych.

Uwagi

Int jest liczbą całkowitą, który jest przechowywany w 4 bajty.Wartość maksymalna jest 2 147 483 647.Wartość minimalna to -2 147 483 648.

Przykłady

Visual Basic

Dim d As DataType
d = New DataType(SqlDataType.Int)

PowerShell

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