I have a search screen in my servlet to search by name. This search is done on three different dbs using three different connections, retrieving three different ResultSets. No problem there. The problem lies in the fact that thousands of records are possible so I set it up to do paging (10 results per page)I have this working when searching one datasource using 1 ResultSet. I am stumped on how I can do this with all three. Is there some way to combine ResultSets?