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 » DownloadData interface

DownloadData interface Next Page

getDownloadTableByName method


Syntax

public DownloadTableData getDownloadTableByName(
string table-name);

Remarks

Gets the named download table for this synchronization. Will return NULL if there is no table with the given name in this synchronization.

Parameters
Returns

A DownloadTableData instance representing the specified table, or null if a table of the given name does not exist for the current synchronization.

See also
Example

The following example uses the getDownloadTableByName method to return a DownloadTableData instance for the remoteOrders table.

Note

This example assumes you have a DBConnectionContext instance called _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();

  // Get the DownloadTableData for the remoteOrders table.
  DownloadTableData my_download_table = my_dd.getDownloadTableByName("remoteOrders");
 
  // ... 
}