Examples of Voiture


Examples of modele.voiture.Voiture

            res = smt.executeQuery("select idFicheEntret,  tvoiture.idVoit, tvoiture.numIdentifAggloVoit, dateDernierEntret,  dateProchainEntret, typeentretien.idTypeEntret, ttypeentretien.descripTypeEntret, kmDernierVoitEntret,  kmProchainVoitEntret, kmPrevenirAvantEntret, coutEntret, nombreUniteEntret, ttypeunite.idUnite, ttypeunite.descripTypeUnite from tficheentretienvoiture, tvoiture, ttypeentretien, ttypeunite where tficheentretienvoiture.idVoit = tvoiture.idVoit and tficheentretienvoiture.idTypeEntret = ttypeentretien.idTypeEntret and tficheentretienvoiture.idTypeUnite= ttypeunite.idTypeUnite and idFicheEntret = LAST_INSERT_ID()");
            if (res.next()) {
              result[0] = new FicheEntretien(res.getInt(1))
              result[0].setLibelle(res.getString(2));
             
              Voiture voiture = new Voiture(res.getInt(3));
              voiture.setNumeroAgglomeration(res.getInt(4));
              result[0].setVoiture(voiture);
             
              Date dateDernierEntret = new Date(res.getDate(5).getTime());             
              result[0].setDateDernierEntretien(dateDernierEntret);
             
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.