අපි බලමු, jComboBox එකකට කොහොමද query එකක් execute කරලා retrieve කරගන්න data add කරගන්නේ කියලා.
මෙතනදී මම මගේ database එකේ තියෙන vehicle table එකේ සියල්ල ResultSet එකකට ගන්නවා.
ඊ ලගට ඒ ResultSet 1 end එක වෙනකන් කියවද්දී අදාළ column එකක data, jComboBox එකේ Item එකක් විදියට add කරගන්න කියනවා. මෙහි rst.getString(1) තුල සඳහන් වන්නේ column index එකයි.
try {
ResultSet rst = DB_Access.getData("select * from vehicle");
while(rst.next()){
jComboBox1.addItem(rst.getString(1));
}
} catch (SQLException ex) {
JOptionPane.showMessageDialog(this, "SQL Error");
} catch (ClassNotFoundException ex) {
JOptionPane.showMessageDialog(this, "DB Connection Error");
}
කොහොම හරි ගොඩයන්න පෙරලෙන පිටු
ලේසියෙන්ම හොයාගන්න මෙතනින්
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment