Поделиться через


LogProviderBase.OpenLog Метод

Определение

Вызывается в начале выполнения пакета для установления соединений с внешними источниками данных.

public:
 virtual void OpenLog();
public virtual void OpenLog ();
abstract member OpenLog : unit -> unit
override this.OpenLog : unit -> unit
Public Overridable Sub OpenLog ()

Примеры

В следующем примере показано подключение к внешнему текстовому файлу с помощью указанного ConnectionManager в свойстве ConfigString . Переменная подключения кэширована из

Метод InitializeLogProvider.

public override void OpenLog()  
{  
    //    Get the ConnectionManager from the package's  
    //    Connections collection.  
    connectionManager cm = connections[ConfigString];  
    //    AcquireConnection for a file ConnectionManager  
    //    retrieves the path to the file.  
    string path = (string)cm.AcquireConnection(null);  
    //    Instantiate the stream writer, and writes the opening  
    //    log entry.  
    this.sw = new StreamWriter(path);  
    sw.WriteLine("OpenLog: " + DateTime.Now.ToShortDateString());  
}  
Public Overrides  Sub OpenLog()  
    '    Get the ConnectionManager from the package's  
    '    Connections collection.  
    Dim cm As connectionManager =  connections(ConfigString)   
    '    AcquireConnection for a file ConnectionManager  
    '    retrieves the path to the file.  
    Dim path As String = CType(cm.AcquireConnection(Nothing), String)  
    '    Instantiate the stream writer, and writes the opening  
    '    log entry.  
    Me.sw = New StreamWriter(path)  
    sw.WriteLine("OpenLog: " + DateTime.Now.ToShortDateString())  
End Sub  

Комментарии

Этот метод вызывается в начале выполнения пакета и перед событиями выполнения. Этот метод следует использовать для установления подключений к внешним источникам данных и подготовки к реагированию на вызовы Log метода.

Применяется к