Mysql
 sql >> Base de données >  >> RDS >> Mysql

Définir le résultat de la requête MySQL dans un JComboBox

Vous pouvez utiliser le code suivant :

JComboBox cmb = your-combo;
ResultSet rs = your-Result-set; 
while(rs.next()) {
    String result = rs.getString(1); // Retrieves the value of the designated column in the current row of this ResultSet object as a String
    if (result != null) {
        result = result.trim();
    }
    cmb.addItem(result);
} 
rs.close();