Does anybody know what the difference between these to methods is?
ResultSet.close() and Connection.close() ??
I use them interchangebbly, would this have an adverse effect on my app in anayway??
Thanks in advance for your thoughts,
Regards Zein
stu derby
Ranch Hand
Joined: Dec 15, 2005
Posts: 333
posted
0
In a properly written JDBC driver, Connection.close() will close any open Statement or ResultSet objects that were opened on that Connection, before closing the connection itself. ResultSet.close() will merely close the ResultSet, leaving open any Statement or Connection above it.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.