"name"); System.out.println(code+name); } } catch (SQLException e) { System.out.println(e.getMessage()); e.printStackTrace(); } finally { try { if (conn != null) conn.close(); } catch (SQLException e) { System.out.println(e.getMessage()); e.printStackTrace(); } } } public static void main(String args[]) { new TestJDBC().test(); } }
四、JDBC编程的陷阱
1、conn一定要在finally语句块进行关闭。
2、Statement、ResultSet尽可能缩小其变量作用域。
3、Statement可以使用多次,定义多个。一个Statement对象只和一个ResultSet对象关联,并且是最后一次查询。
4、ResultSet在Connection、ResultSet关闭后自动关闭。
还有很多需要写的,以后再慢慢总结。 |