IDTSPath100 Interface
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
public interface class IDTSPath100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2012::IDTSObject100
[System.Runtime.InteropServices.Guid("E25E234C-0F9A-4A2D-93A8-1AA097E6355C")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSPath100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2012.IDTSObject100
[<System.Runtime.InteropServices.Guid("E25E234C-0F9A-4A2D-93A8-1AA097E6355C")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSPath100 = interface
interface IDTSObject100
Public Interface IDTSPath100
Implements IDTSObject100
- Attributs
- Implémente
Exemples
L’exemple de code suivant montre comment créer un IDTSPath100 objet, puis attacher la sortie du composant en amont à l’entrée du composant en aval.
Public Function EstablishPath(ByVal mp As MainPipe, ByVal start As IDTSOutput100, ByVal end As IDTSInput100) As IDTSPath100
Dim path As IDTSPath100 = mp.PathCollection.New
path.AttachPathAndPropagateNotifications(start, end)
Return path
End Function
public IDTSPath100 EstablishPath( MainPipe mp , IDTSOutput100 start , IDTSInput100 end )
{
IDTSPath100 path = mp.PathCollection.New();
path.AttachPathAndPropagateNotifications( start, end );
return path;
}
Remarques
Les objets path sont créés pour établir le flux de données entre le IDTSOutput100 d’un composant en amont et le IDTSInput100 d’un autre composant. Un chemin d’accès contient un objet de sortie unique représenté sous la StartPointforme , et une seule entrée, qui est le EndPoint du chemin d’accès. Un chemin d’accès entre deux composants est établi dans un processus en deux étapes. Tout d’abord, créez le chemin d’accès en appelant New sur la collection de chemins de l’objet IDTSComponentMetaData100. Ensuite, établissez le chemin en appelant AttachPathAndPropagateNotifications sur le chemin lui-même. Cette méthode établit le chemin d’accès et avertit les composants affectés de son existence.
Les colonnes du StartPoint sont ensuite mappées au en EndPoint appelant SetUsageType.
Propriétés
Description | |
EndPoint | |
ID | |
IdentificationString | |
Name | |
ObjectType | |
StartPoint | |
Visualized |
Méthodes
AttachPathAndPropagateNotifications(IDTSOutput100, IDTSInput100) |