Konstruktor DataType (SqlDataType, String)
Inicjuje nowe wystąpienie DataType klasy na podstawie określonej SQL Server Typ danych z określonego typu.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Sub New ( _
sqlDataType As SqlDataType, _
type As String _
)
'Użycie
Dim sqlDataType As SqlDataType
Dim type As String
Dim instance As New DataType(sqlDataType, _
type)
public DataType(
SqlDataType sqlDataType,
string type
)
public:
DataType(
SqlDataType sqlDataType,
String^ type
)
new :
sqlDataType:SqlDataType *
type:string -> DataType
public function DataType(
sqlDataType : SqlDataType,
type : String
)
Parametry
- sqlDataType
Typ: Microsoft.SqlServer.Management.Smo.SqlDataType
A SqlDataType Określa wartość obiektu SQL Server typu danych.
- type
Typ: System.String
A String wartość, która określa typ typu danych.
Przykłady
Visual Basic
'Declare and create a DataType object variable.
Dim dt As DataType
dt = New DataType(SqlDataType.
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::
Zobacz także