共用方式為


DataType.SqlDataType 屬性

Gets a data type that specifies the SqlDataType definition used in the data type.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
Public Property SqlDataType As SqlDataType 
    Get 
    Set
'用途
Dim instance As DataType 
Dim value As SqlDataType 

value = instance.SqlDataType

instance.SqlDataType = value
public SqlDataType SqlDataType { get; set; }
public:
property SqlDataType SqlDataType {
    SqlDataType get ();
    void set (SqlDataType value);
}
member SqlDataType : SqlDataType with get, set
function get SqlDataType () : SqlDataType 
function set SqlDataType (value : SqlDataType)

屬性值

型別:Microsoft.SqlServer.Management.Smo.SqlDataType
A SqlDataType object value that specifies an SqlDataType definition in the data type.

範例

Visual Basic

Dim dt As DataType
dt = New DataType(SqlDataType.Int)
Console.WriteLine(dt.SqlDataType.ToString())

PowerShell

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

請參閱

參考

DataType 類別

Microsoft.SqlServer.Management.Smo 命名空間