Esempio n. 1
0
 @Override
 public void delete() {
   Base b = new Base();
   try {
     b.connect();
     b.procedureInit("Notification_delete", 1);
     b.setParamInt(colID_Notif, ID_Notification);
     b.execute();
   } catch (SQLException e) {
     e.printStackTrace();
   } finally {
     b.close();
   }
 }