Se entrambi gli schemi sono coerenti, puoi creare lo stesso oggetto per ogni riga di entrambi ResultSet
s e li mettono tutti in un unico List
.
Ad esempio,
List<T> results = new ArrayList<T>();
while(resultSet1.next()) {
// retrieve fields here...
results.add(new T(...fields...));
}
while(resultSet2.next()) {
// retrieve fields here...
results.add(new T(...fields...));
}