Udostępnij za pośrednictwem


Właściwość DataType.TinyInt

Pobiera typ danych, który określa TinyInt 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 TinyInt As DataType
    Get
'Użycie
Dim value As DataType

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

Wartość właściwości

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

Uwagi

A tinyint jest liczbą całkowitą, która jest przechowywana w 1 bajt.Wartość maksymalna jest 255.Wartość minimalna to 0.

Przykłady

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.TinyInt)

PowerShell

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