The following example shows you how to obtain a DownloadData instance for the current synchronization using the DBConnectionContext.getDownloadData method. This example assumes you have created a DBConnectionContext instance named _cc.
// The method used for the handle_DownloadData event.
public void HandleDownload() throws SQLException {
// Get the DownloadData for the current synchronization
DownloadData my_dd = _cc.getDownloadData();
// ...
}
// ...