public static Statement getStatement(Connection conn) { Statement stat = null; try { stat = conn.createStatement(); } catch ( Exception e) { e.printStackTrace(); } return stat; }