U moet de UUID converteren naar een bytearray. Zie de methode asBytes hoe het te doen.
Daarna is de binding zo eenvoudig als het gebruik van setBytes
.
Voorbeeld
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()
Hier, voor het geval de link niet werkt, de conversiemethode UUID naar bytearray
public static byte[] asBytes(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();
}