Konstruktor DataType (SqlDataType, Int32, Int32)
Inicjuje nowe wystąpienie DataType klasy na podstawie określonej SQL Server Typ danych z określonego precyzji i skali.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Sub New ( _
sqlDataType As SqlDataType, _
precision As Integer, _
scale As Integer _
)
'Użycie
Dim sqlDataType As SqlDataType
Dim precision As Integer
Dim scale As Integer
Dim instance As New DataType(sqlDataType, _
precision, scale)
public DataType(
SqlDataType sqlDataType,
int precision,
int scale
)
public:
DataType(
SqlDataType sqlDataType,
int precision,
int scale
)
new :
sqlDataType:SqlDataType *
precision:int *
scale:int -> DataType
public function DataType(
sqlDataType : SqlDataType,
precision : int,
scale : int
)
Parametry
- sqlDataType
Typ: Microsoft.SqlServer.Management.Smo.SqlDataType
A SqlDataType Określa wartość obiektu SQL Server typu danych.
- precision
Typ: System.Int32
Int32 , Który określa dokładność numeryczną wartość SQL Server typów danych.
- scale
Typ: System.Int32
Int32 , Który określa skalę numeryczną wartość SQL Server typów danych.
Przykłady
Visual Basic
'Declare and create a DataType object variable.
Dim dt As DataType
dt = New DataType(SqlDataType.Decimal, 3, 3)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Decimal, 3, 3)
Zobacz także