Tuesday, August 30, 2011

In Persistence

private Connection con;

public StudentPersistence(Connection con) {
this.con = con;
}

public void conClose() {
try {
this.con.close();
} catch (Exception e) {
System.out.println(e);
}
}

No comments:

Post a Comment