Método Numeric
Returns an object that represents the specified type.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Shared Function Numeric ( _
scale As Integer, _
precision As Integer _
) As DataType
'Uso
Dim scale As Integer
Dim precision As Integer
Dim returnValue As DataType
returnValue = DataType.Numeric(scale, _
precision)
public static DataType Numeric(
int scale,
int precision
)
public:
static DataType^ Numeric(
int scale,
int precision
)
static member Numeric :
scale:int *
precision:int -> DataType
public static function Numeric(
scale : int,
precision : int
) : DataType
Parâmetros
- scale
Tipo: System. . :: . .Int32
An Int32 value that specifies the scale.
- precision
Tipo: System. . :: . .Int32
An Int32 value that specifies the precision.
Valor de retorno
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType object value.
Exemplos
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.Numeric, 10, 3)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Numeric, 10, 3)