It is possible to Use two query with in single ResultSet
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
A result set corresponds to a single SQL query. However your "single" query could use UNION to effectively combine more than one query. |
|||||
|
|
No you should not do this. For example
You should close old result set before using it again. If you don't close the old resultset object then it will be in memory and never be garbage collected. If you close the DB connection object in this case(without closing resultset properly) then connection object is not garbage collected(not retuned to pool) as connection have reference(i.e. unclosed resultset). |
|||
|
|