void setDownloadDeletes(DownloadTableData td) {
java.sql.PreparedStatement delete_ps = td.getDeletePreparedStatement();
// This is the same as executing the following SQL statement:
// DELETE FROM remoteOrders where pk=2300;
delete_ps.setInt(1, 2300);
delete_ps.executeUpdate();
delete_ps.close();
}