Package Interface

Examples of Interface.TableDAOInterface.faireRequete()


      String text = request.getParameter(" TEXT").toString();

      String requete = "insert into QUESTION_REPONSE(TEXT,NUM_QR,ID_SITE) values (TEXT=\"" + text + "\", NUM_QR=" + num_qr + ", ID_SITE=" + id_site+")";
      System.out.println(requete);
      TableDAOInterface tableDAO = new JDBCTableDAO();
      tableDAO.faireRequete(requete);
      tableDAO.loadDatas();
      updateSite();
      request.getRequestDispatcher("administration.jsp").forward(request, response)
      return;
    }
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.