sql >> Database teknologi >  >> RDS >> Mysql

Indstil resultatet af MySQL-forespørgsel i en JComboBox

Du kan bruge følgende kode:

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();


  1. Tildel dynamisk alias til alle feltnavne i msyql-forespørgsel

  2. Henter SQLEXCEPTION-meddelelse i MySQL-procedurer

  3. Hierarkiske forespørgsler i MySQL

  4. Bedste måde at oprette konfigurationsfil (config.php) php