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 sequence and then inserted to the table by a trigger.
Now, I know there are several ways to get the id of the inserted row when using JDBC
, but since I'm using MyBatis
to execute the INSERT
command, I can't seem to figure out how to obtain the id after inserting my data. Any advice would be greatly appreciated.