Application.DataTypeInfoFromDataType(DataType) 方法

定义

重要

此 API 不符合 CLS。

为指定的数据类型返回 DataTypeInfo 对象。

public:
 Microsoft::SqlServer::Dts::Runtime::DataTypeInfo ^ DataTypeInfoFromDataType(Microsoft::SqlServer::Dts::Runtime::Wrapper::DataType dt);
[System.CLSCompliant(false)]
public Microsoft.SqlServer.Dts.Runtime.DataTypeInfo DataTypeInfoFromDataType (Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType dt);
[<System.CLSCompliant(false)>]
member this.DataTypeInfoFromDataType : Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType -> Microsoft.SqlServer.Dts.Runtime.DataTypeInfo
Public Function DataTypeInfoFromDataType (dt As DataType) As DataTypeInfo

参数

dt
DataType

数据类型。

返回

DataTypeInfo 对象。

属性

示例

下面的代码示例检索类型的名称,DT_I4。

#region Using directives  
using System;  
using System.Collections.Generic;  
using System.Text;  
using Microsoft.SqlServer.Dts.Runtime;  
using Wrapper = Microsoft.SqlServer.Dts.Runtime.Wrapper;  
#endregion  

namespace Application_and_Package  
{  
    class PackageTest  
    {  
        static void Main(string[] args)  
        {  
            Application app = new Application();  
            DataTypeInfo dti = app.DataTypeInfoFromDataType(Wrapper.DataType.DT_I4);  
           Console.WriteLine("DataType = " + dti.TypeName);  
        }  
    }  
}  
#Region "Using directives  
Imports System  
Imports System".Collections.Generic  
Imports System.Text  
Imports Microsoft.SqlServer.Dts.Runtime  
Imports Wrapper = Microsoft.SqlServer.Dts.Runtime.Wrapper  
#End Region  

Namespace Application_and_Package  
    Class PackageTest  
        Sub Main(ByVal args() As String)  
            Dim app As Application =  New Application()   
            Dim dti As DataTypeInfo =  app.DataTypeInfoFromDataType(Wrapper.DataType.DT_I4)   
           Console.WriteLine("DataType = " + dti.TypeName)  
        End Sub  
    End Class  
End Namespace  

示例输出:

DataType = four-byte signed integer

注解

使用此方法可以获取特定数据类型的数据类型信息。 例如,如果在 参数中 dt 传递“DT_I4”,则返回值是 DataTypeInfo 包含枚举名称“DT_I4”和类型名称“四字节带符号整数”的对象。 此信息可用于在用户界面或错误消息中显示类型信息。 有关数据类型的详细信息,请参阅 Integration Services Data Types

调用方说明

此方法需要向项目添加 Microsoft.SqlServer.Dts.Runtime.Wrapper。 在 C# 代码示例中 using , 指令已将此命名空间别名为 变量 Wrapper

适用于