I\'m inserting some data into an Oracle table and need to retrieve the id of the inserted row. Said id is being generated by a sequenc
Oracle
id
Something like this should work
class User { int userId ... } INSERT INTO user(login, name,...) VALUES(#{login}, #{name},...