When we work with connections to data bases and do operations like select, we must generate the following objects:
A Connection, a Statement and a ResultSet.
When finalizing the query one must close the connection and the other objects.
My question is the following one:
the ResultSet object, it is created through Statement object, and this through Connection object, is it enough to close the Connection object?, that is to say, to do a
Connection.close(), or is it necessary to close the three objects one by one?
Albert
