UUIDをバイト配列に変換する必要があります。メソッド
その後のバインディングは、setBytes
を使用するのと同じくらい簡単です。 。
例
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()
ここでは、リンクが機能しない場合に備えて、UUIDからバイト配列への変換方法
public static byte[] asBytes(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();
}