Banco
int = idfun
String = motinvo
public void PesquisaSetor() {
String sql =“select func.MOTIVO from func order by MOTIVO”;
try {
pst = conexao.prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
cbmotivo.addItem(rs.getString("motivo"));
}
rs.close();
} catch (Exception e) {
JOptionPane.showMessageDialog(null,
"Ocorreu erro ao carregar a Combo Box", "Erro",
JOptionPane.ERROR_MESSAGE);
}
}