Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » MobiLink - Client Administration » Dbmlsync Integration Component » Dbmlsync Integration Component events

EndDownload event Next Page

EndLogScan event


The EndLogScan event is triggered immediately after the transaction log is scanned for upload. This event is not fired for scripted uploads.

Syntax

Public Event EndLogScan( )
Member of DbmlsyncCOM.Dbmlsync

Remarks

Use this event to add custom actions immediately after the transaction log is scanned for upload.

Example

The following Visual Basic .NET example outputs a message when the EndLogScan event is triggered.

Private Sub dbmlsync1_EndLogScan()
Handles dbmlsync1.EndLogScan

        MsgBox("Scan of transaction log complete...")

End Sub