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");
// ...
}