public UploadedTableData getUploadedTableByName( java.lang.String table_name )
Returns a UploadedTableData instance representing the specified table.
table_name The name of the uploaded table for which you want the uploaded data.
An UploadedTableData instance representing the specified table, or null if a table of the given name does not exist for the current synchronization.
Assume you use a method called HandleUpload for the handle_UploadData synchronization event. The following example uses the getUploadedTableByName method to return an UploadedTableData instance for the remoteOrders table.
// The method used for the handle_UploadData event.
public void handleUpload(UploadData ut)
throws SQLException, IOException
{
UploadedTableData uploaded_t1 = ut.getUploadedTableByName("remoteOrders");
// ...
} |
| Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |