You must close the ResultSet
, Statement
, and Connection
objects only after you have finished using them. In the DataHandler
class, the insert, update, and delete methods must close these objects before returning. Note that the query methods cannot close these objects until the employees.jsp
page has finished processing the rows returned by the query.
In the following steps, you add the appropriate calls to the closeAll
method in the DataHandler.java
file: