Database : Oracle
I have table in which there are 10 columns and i want sequence next value when insert row and also use that sequence number which inserted.
Now i have searched and find that KeyHolder of spring is useful but restrict for only less than 8 field so i can't use that.
How can i fire "select MySequence.nextval from dual"
query and get sequence using jdbctemplate(NamedParameterJDBCTemplate)
?
Is other way to achieve for get inserted sequence value ?.