다음을 통해 공유


Task.GetConnectionID Method

Gets a String containing the ID of the connection.

네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

구문

‘선언
Public Function GetConnectionID ( _
    connections As Connections, _
    nameOrID As String _
) As String
public string GetConnectionID (
    Connections connections,
    string nameOrID
)
public:
String^ GetConnectionID (
    Connections^ connections, 
    String^ nameOrID
)
public String GetConnectionID (
    Connections connections, 
    String nameOrID
)
public function GetConnectionID (
    connections : Connections, 
    nameOrID : String
) : String

매개 변수

  • nameOrID
    The name of the connection to return.

반환 값

A String containing the connection's ID.

주의

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 that uses 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