we currently have triggers in our database that hand out uuid for every record that i insert. When i am inserting records with mybatis i would like to get that uuid back instead of the numbers of rows that have been inserted.
From previous post i read that i could do it with
useGeneratedKeys="true" keyProperty="id"
But we store our uuid as binaries so i would like to get the non-binary uuid back from an insert. When we insert stuff we use functions like 'uuid2bin' and 'bin2uuid' so i was hoping to use a function like this to retrieve the newly generated uuid from the database (MySQL).
Any suggestions on how i could get the newly generated uuid back??