Bonjour, j'ai eu un problème lors de mon remplissage de ma ComboBox. Je vous transmets mon code :Une fois executé, je vois affiché dans ma ComboBox : com.mysql.jdbc.JDBC4ResultSet@510bb7
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 jComboBox1.removeAllItems(); String url = "jdbc:mysql://localhost:3306/site"; String identifiant = "root"; Connection con = null; try { con = (Connection) DriverManager.getConnection(url, identifiant, ""); System.out.println("Connexion établie"); } catch (Exception ex) { System.out.println("Erreur lors de la connexion"); } try { ResultSet rs = null; String sql = "select nom from personne"; PreparedStatement stmt = (PreparedStatement) con.prepareStatement(sql); rs = stmt.executeQuery(sql); while (rs.next()) { jComboBox1.addItem(rs); } } catch (Exception ex) { System.out.println("erreur"); }
Comment cela se fait-il ?
Cordialement
Partager