Właściwość DataType.SmallInt
Pobiera typ danych, który określa SmallInt 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 SmallInt As DataType
Get
'Użycie
Dim value As DataType
value = DataType.SmallInt
public static DataType SmallInt { get; }
public:
static property DataType^ SmallInt {
DataType^ get ();
}
static member SmallInt : DataType
static function get SmallInt () : DataType
Wartość właściwości
Typ: Microsoft.SqlServer.Management.Smo.DataType
A DataType Określa wartość obiektu SmallInt definicji typu danych.
Uwagi
A SmallInt jest liczbą całkowitą, który jest przechowywany w 2 bajty.Wartość maksymalna jest 32 767.Wartość minimalna to -32 767.
Przykłady
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.SmallInt)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::SmallInt)
Zobacz także