Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way in Java to delete a row just from a result set and not from underlying database? Thanks.

share|improve this question

2 Answers

Take a look at the CachedRowSet. It allows you to create a disconnected ResultSet and operate without affecting the database.

share|improve this answer

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.

share|improve this answer
thnx matao for your reply,, actually my resultset is huge 100 mb or more I need to iterate it and create other formatted java objects so it takes a huge amount of memory when i execute the method, that why i want to remove the resultset row when i iterate over it and at same time do not want it to be deleted from DB – Prince Charming Jun 20 '11 at 8:22
the deleteRow method in cachedrowset also deletes the current row from the underlying database just like the ResultSet do. is it required to call acceptChanges method to delete current row from the database as well or not ? if not than i think my problem is solved. – Prince Charming Jun 20 '11 at 8:32
no effects on memory with or without deleteRow :( – Prince Charming Jun 20 '11 at 10:55
any other idea about this ? – Prince Charming Jun 20 '11 at 10:59
do you need to have Random Access to the ResultSet? If not I would suggest paging the ResultSet, then you could get 1000 rows, process them, get the next 1000 etc. But if you're building up a dictionary of already "seen" rows then you won't be able to do that. If your data is such that you really can't do paging, then the next suggestion would be some kind of a temp table in the DB, write the results into it and do the processing there. It really depends on the characteristics of your data... – matao Jun 21 '11 at 0:19
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.