It seems that every time I want to perform a db query, I have to write the following:
Connection conn = null; Statement stmt = null; ResultSet rset = null;
I would use hibernate or JPA to reduce the clutter...