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