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..
crs1andcrs2are empty or not and then adding them? – Learner Jan 27 at 16:04