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??

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Two options I can think of 1) do the conversion in Java using a MyBatis TypeHandler or 2) wrap your insert with a stored procedure that returns the formatted UUID.

The issue with #1 would be that you are moving load from the DB to your application, which could have performance impacts if MySql is remote.

With #2, you need to use a <select> in MyBatis. But, you need to make sure that it actually commits. Also, if you are using MyBatis caching, you also need to set flushCache=true in the <select>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.