Créé dans le cadre du projet de fin d'année de la promo 2018 de CIR2 de l'ISEN Brest/Rennes, le Burger Quizz est une adaptation numérique du jeu télévisé éponyme, plus précisément d'une épreuve spécifique de ce jeu : le "Sel ou Poivre".

GestionQuestions.java 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package GestionBddDAO;
  2. import Modele.Question;
  3. import java.sql.Connection;
  4. import java.sql.PreparedStatement;
  5. import java.sql.ResultSet;
  6. import java.sql.SQLException;
  7. import java.util.ArrayList;
  8. public class GestionQuestions
  9. {
  10. private Connection bdd;
  11. private ArrayList<Question> listeQuestions;
  12. public GestionQuestions(Connection bdd)
  13. {
  14. this.bdd = bdd;
  15. this.listeQuestions = new ArrayList<Question>();
  16. }
  17. public void readQuestions(String reponse1, String reponse2) throws SQLException
  18. {
  19. PreparedStatement preparedStatement = null;
  20. ResultSet resultat = null;
  21. String rq = "SELECT *" +
  22. " FROM questions" +
  23. " WHERE reponse1 = ? AND reponse2 = ?";
  24. try
  25. {
  26. preparedStatement = bdd.prepareStatement(rq);
  27. preparedStatement.setString(1, reponse1);
  28. preparedStatement.setString(2, reponse2);
  29. resultat = preparedStatement.executeQuery();
  30. listeQuestions.clear();
  31. while(resultat.next())
  32. {
  33. listeQuestions.add(new Question(resultat.getString("intitule"), resultat.getString("reponse1"), resultat.getString("reponse2"), resultat.getInt("num_reponse")));
  34. }
  35. }
  36. catch (SQLException e)
  37. {
  38. throw e;
  39. }
  40. finally
  41. {
  42. if(resultat != null)
  43. {
  44. resultat.close();
  45. }
  46. if(preparedStatement != null) {
  47. preparedStatement.close();
  48. }
  49. }
  50. }
  51. public void createQuestion(String intitule, String reponse1, String reponse2, int num_reponse) throws SQLException
  52. {
  53. PreparedStatement preparedStatement = null;
  54. String rq = "INSERT INTO questions(intitule, reponse1, reponse2, num_reponse)" +
  55. " VALUES(?, ?, ?, ?)";
  56. try
  57. {
  58. preparedStatement = bdd.prepareStatement(rq);
  59. preparedStatement.setString(1, intitule);
  60. preparedStatement.setString(2, reponse1);
  61. preparedStatement.setString(3, reponse2);
  62. preparedStatement.setInt(4, num_reponse);
  63. preparedStatement.executeUpdate();
  64. }
  65. catch (SQLException e)
  66. {
  67. throw e;
  68. }
  69. finally
  70. {
  71. if(preparedStatement != null)
  72. {
  73. preparedStatement.close();
  74. }
  75. }
  76. }
  77. public void deleteQuestion(String intitule, String reponse1, String reponse2) throws SQLException
  78. {
  79. PreparedStatement preparedStatement = null;
  80. String rq ="DELETE FROM questions" +
  81. " WHERE reponse1 = ? AND reponse2 = ? AND intitule = ?";
  82. try
  83. {
  84. preparedStatement = bdd.prepareStatement(rq);
  85. preparedStatement.setString(1, reponse1);
  86. preparedStatement.setString(2, reponse2);
  87. preparedStatement.setString(3, intitule);
  88. preparedStatement.executeUpdate();
  89. }
  90. catch (SQLException e)
  91. {
  92. throw e;
  93. }
  94. finally
  95. {
  96. if(preparedStatement != null)
  97. {
  98. preparedStatement.close();
  99. }
  100. }
  101. }
  102. public void updateQuestion(String oldIntitule, String newIntitule, String reponse1, String reponse2, int newNum_reponse) throws SQLException
  103. {
  104. PreparedStatement preparedStatement = null;
  105. String rq ="UPDATE questions" +
  106. " SET intitule = ?, num_reponse = ?" +
  107. " WHERE intitule = ? AND reponse1 = ? AND reponse2 = ?";
  108. try
  109. {
  110. preparedStatement = bdd.prepareStatement(rq);
  111. preparedStatement.setString(1, newIntitule);
  112. preparedStatement.setInt(2, newNum_reponse);
  113. preparedStatement.setString(3, oldIntitule);
  114. preparedStatement.setString(4, reponse1);
  115. preparedStatement.setString(5, reponse2);
  116. preparedStatement.executeUpdate();
  117. }
  118. catch (SQLException e)
  119. {
  120. throw e;
  121. }
  122. finally
  123. {
  124. if(preparedStatement != null)
  125. {
  126. preparedStatement.close();
  127. }
  128. }
  129. }
  130. public ArrayList<Question> getListeQuestions() {
  131. return listeQuestions;
  132. }
  133. }