Task.GetConnectionName Method
Gets a String containing the name of the connection.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
语法
声明
Public Function GetConnectionName ( _
connections As Connections, _
nameOrID As String _
) As String
public string GetConnectionName (
Connections connections,
string nameOrID
)
public:
String^ GetConnectionName (
Connections^ connections,
String^ nameOrID
)
public String GetConnectionName (
Connections connections,
String nameOrID
)
public function GetConnectionName (
connections : Connections,
nameOrID : String
) : String
参数
- connections
The Connections collection to review.
- nameOrID
The ID of the connection to return.
返回值
A String containing the connection's name.
备注
This function is useful when if you are writing a custom task, and want to convert between the connection ID and the connection name.
示例
The following code example shows an example of a task using the GetConnectionID method to get and set the names and ID of the connection in the task's custom myConnection property.
public string myConnection
{
get
{return GetConnectionName(m_connections, m_ MyConnectionName);
}
set
{m_MyConnectionName = GetConnectionID(m_connections, value);}
}
Public Property myConnection() As String
Get
Return GetConnectionName(m_connections, m_ MyConnectionName)
End Get
Set (ByVal Value As String)
m_MyConnectionName = GetConnectionID(m_connections, value)
End Set
End Property
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
Task Class
Task Members
Microsoft.SqlServer.Dts.Runtime Namespace