Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Initializes a new instance of the DataType class based on a specified SQL Server data type with the specified precision and scale.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub New ( _
sqlDataType As SqlDataType, _
precision As Integer, _
scale As Integer _
)
'Usage
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
)
Parameter
- sqlDataType
Typ: Microsoft.SqlServer.Management.Smo.SqlDataType
A SqlDataType object value that specifies the SQL Server data type.
- precision
Typ: System.Int32
An Int32 value that specifies the precision for numeric SQL Server data types.
- scale
Typ: System.Int32
An Int32 value that specifies the scale for numeric SQL Server data types.
Beispiele
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)