|
8
50
} catch (ClassNotFoundException e) {
51
e.printStackTrace();
52
} catch (SQLException se) {
53
se.printStackTrace();
54
} finally {
55
if(conn!=null) try {conn.close();} catch (SQLException e) {}
56
}
57
58
}//main
59
}//class
60