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. MySQL(またはPHP?)はフィールドデータごとに結果をグループ化します

    2. Postgresデータ型キャスト

    3. 多対多の関係における問題

    4. MariaDB SCHEMA()の説明