Estou tentando salvar um Enum no meu combobox usando JDBC. alguém tem algum exemplo?
Estou tentando fazer assim: só que na linha do meu Enum está Null
OBS: Na classe tarefa, tem um Enum
private void montaTarefa(Tarefa tarefa, PreparedStatement stmt) throws SQLException {
stmt.setString(1, tarefa.getDescricao());
stmt.setDate(2, new Date(tarefa.getData().getTimeInMillis()));
**stmt.setString(3, tarefa.getSituacao().getTipoSituacao());**
stmt.execute();
connection.close();
}