Is there a way in Java to delete a row just from a result set and not from underlying database? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Take a look at the |
||||
|
|
|
It sounds like you're iterating through your ResultSet and filtering rows as you go? I would say either move the filtering to the SQL statement if you can, otherwise copy the ResultSet into a List, either of objects of rowtype or just Map's if you'd rather not, then call list.remove(row) as you go. You can't remove rows or update a ResultSet, you'd have to use a CachedRowSet like VAShhh suggests. |
|||||||||||
|