getUploadedTableByName method

Syntax
public UploadedTableData getUploadedTableByName( 
   java.lang.String table_name
)
Remarks

Returns a UploadedTableData instance representing the specified table.

Parameters
  • table_name   The name of the uploaded table for which you want the uploaded data.

Returns

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

See also
Example

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