Du skal konvertere UUID til et byte-array. Se metoden asBytes hvordan man gør det.
Efter det er bindingen enkel som at bruge setBytes
.
Eksempel
def stmt = con.prepareStatement("insert into TAB_UUID (id, uuid) values (?,?)")
// bind
stmt.setInt(1,1)
def uuid = UUID.randomUUID()
stmt.setBytes(2,asBytes(uuid))
def rowCount = stmt.executeUpdate()
Her for tilfælde af at linket ikke virker konverteringsmetoden UUID til byte array
public static byte[] asBytes(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();
}