Metoda DataType.Decimal
Zwraca obiekt, który reprezentuje określony typ.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Shared Function Decimal ( _
scale As Integer, _
precision As Integer _
) As DataType
'Użycie
Dim scale As Integer
Dim precision As Integer
Dim returnValue As DataType
returnValue = DataType.Decimal(scale, _
precision)
public static DataType Decimal(
int scale,
int precision
)
public:
static DataType^ Decimal(
int scale,
int precision
)
static member Decimal :
scale:int *
precision:int -> DataType
public static function Decimal(
scale : int,
precision : int
) : DataType
Parametry
- scale
Typ: System.Int32
Int32 Wartość określająca skali.
- precision
Typ: System.Int32
Int32 Wartość określająca dokładność.
Wartość zwracana
Typ: Microsoft.SqlServer.Management.Smo.DataType
A DataType wartość obiektu.
Przykłady
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.Decimal, 10, 3)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Decimal, 10, 3)