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 - Server Administration » Writing Synchronization Scripts in Java » MobiLink server API for Java Reference » DBConnectionContext interface

getConnection method Next Page

getDownloadData method


Syntax

public DownloadData getDownloadData()

Remarks

Returns a DownloadData instance for the current synchronization. Use the DownloadData class to create the download for direct row handling.

Returns

A DownloadData instance for the current synchronization.

See also
Example

The following example shows you how to obtain a DownloadData instance for the current synchronization using the DBConnectionContext getDownloadData method.

DBConnectionContext _cc;

// Your class constructor.
public OrderProcessor( DBConnectionContext cc ) {
 _cc = 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();
 
  // ...
  
}

// ...