I have:
public void addJobs(Jobs jobs) {
this.getJdbcTemplate().update(sqlAddJobs, new Object[] {jobs.getJobName()});
}
In Postgresql DBI have a table:
row_id | jobs
row_id is auto increment, how can I got last insert id?
My sql:
INSERT INTO jobs (jobs) VALUES (?)