DataType 构造函数 (SqlDataType, Int32, Int32)

Initializes a new instance of the DataType class based on a specified SQL Server data type with the specified precision and scale.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
Public Sub New ( _
    sqlDataType As SqlDataType, _
    precision As Integer, _
    scale As Integer _
)
用法
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
)

参数