res = smt.executeQuery("select idCont, statutCont,ttypecontrat.idTypeCont, ttypecontrat.descripTypeCont, TEtat.idEtat,TEtat.descripEtat from tcontrat, ttypecontrat, TEtat where tcontrat.idTypeCont = ttypecontrat.idTypeCont and tcontrat.idEtat = TEtat.idEtat and idCont = LAST_INSERT_ID()");
if (res.next()) {
result[0] = new Contrat(res.getInt(1));
result[0].setStatut(res.getString(2));
TypeContrat typeContrat = new TypeContrat(res.getInt(3));
typeContrat.setLibelle(res.getString(4));
result[0].setTypeContrat(typeContrat);
Etat etat = new Etat(res.getInt(5));
etat.setDescrip(res.getString(6));
result[0].setEtat(etat);