Udostępnij za pośrednictwem


Właściwość BigInt

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

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

Syntax

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

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

Wartość właściwości

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

Uwagi

BigInt jest liczbą całkowitą, która jest przechowywana w 8 bajtów.Wartość maksymalna jest 9,223,372,036,854,775,807.Wartość minimalna to -9 223 372 036 854 775 808.

Przykłady

Visual Basic

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

PowerShell

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