Condividi tramite


Costruttore DataType (SqlDataType, Int32)

Initializes a new instance of the DataType class based on a specified SQL Server data type with specified precision or maximum length.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
Public Sub New ( _
    sqlDataType As SqlDataType, _
    precisionOrMaxLengthOrScale As Integer _
)
'Utilizzo
Dim sqlDataType As SqlDataType 
Dim precisionOrMaxLengthOrScale As Integer 

Dim instance As New DataType(sqlDataType, _
    precisionOrMaxLengthOrScale)
public DataType(
    SqlDataType sqlDataType,
    int precisionOrMaxLengthOrScale
)
public:
DataType(
    SqlDataType sqlDataType, 
    int precisionOrMaxLengthOrScale
)
new : 
        sqlDataType:SqlDataType * 
        precisionOrMaxLengthOrScale:int -> DataType
public function DataType(
    sqlDataType : SqlDataType, 
    precisionOrMaxLengthOrScale : int
)

Parametri

  • precisionOrMaxLengthOrScale
    Tipo: System.Int32
    An Int32 value that specifies the precision for numeric SQL Server data types and maximum length for text based SQL Server data types.

Esempi

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.

PowerShell

$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::

Vedere anche

Riferimento

DataType Classe

Overload DataType

Spazio dei nomi Microsoft.SqlServer.Management.Smo