GetConnectionName 메서드
Gets a String containing the name of the connection.
네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)
구문
‘선언
Public Function GetConnectionName ( _
connections As Connections, _
nameOrID As String _
) As String
‘사용 방법
Dim instance As Task
Dim connections As Connections
Dim nameOrID As String
Dim returnValue As String
returnValue = instance.GetConnectionName(connections, _
nameOrID)
public string GetConnectionName(
Connections connections,
string nameOrID
)
public:
String^ GetConnectionName(
Connections^ connections,
String^ nameOrID
)
member GetConnectionName :
connections:Connections *
nameOrID:string -> string
public function GetConnectionName(
connections : Connections,
nameOrID : String
) : String
매개 변수
- connections
유형: Microsoft.SqlServer.Dts.Runtime. . :: . .Connections
The Connections collection to review.
- nameOrID
유형: System. . :: . .String
The ID of the connection to return.
반환 값
유형: System. . :: . .String
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