Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL क्वेरी का परिणाम JComboBox में सेट करें

आप निम्न कोड का उपयोग कर सकते हैं:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. हिस्टोग्राम प्लॉट के लिए डेटा प्राप्त करना

  2. MySQL 8.0.11 caching_sha2_password के कारण कनेक्ट होने में त्रुटि

  3. मिनट () उदाहरण – MySQL

  4. MySQL में LEN () समतुल्य क्या है?

  5. पैरामीटर के रूप में MySQL तालिका का नाम