I am trying to join two RowSets using JoinRowSet. (there is no way to do the join in SQL in my special case which I will not go into details).

JoinRowSet jrs = new JoinRowSetImpl();
CachedRowSet crs1 = new CachedRowSetImpl();
crs1.populate(myResultSet1);
crs1.setMatchColumn(1);
jrs.addRowSet(crs1);  ////////

CachedRowSet crs2 = new CachedRowSetImpl();
crs2.populate(myResultSet2);
crs2.setMatchColumn(1);
jrs.addRowSet(crs2);  ////////

while (jrs.next())
{
    //display
}

Everything works fine when both RowSets contains data. However, if one RowSet is empty, java does not allow me to add it to the JoinRowSet. It is quite common for a query to return nothing. but that means I have to check each time I add a RowSet..

link|improve this question
How about checking if the crs1 and crs2 are empty or not and then adding them? – Learner Jan 27 at 16:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.