我想在我的数据库中使用 UUID 作为主键,建议使用 VARBINARY(16) 作为列类型。
到目前为止,我有以下内容:
module DataMapper
class Property
class UUIDKey < String
key true
default proc { SecureRandom.uuid.delete('-') }
writer :private
def dump(value)
# add '0x' to save as hex number
# according to http://kekoav.com/posts/uuid-primary-key-mysql
'0x' + value unless value.nil?
end
def load(value)
value unless value.nil?
end
def typecast(value)
# how to convert binary value in db?
load(value)
end
end
end
end
DataMapper 当然会根据上述将值保存为字符串。
如何让 DataMapper 将其保存为二进制/十六进制并加载为字符串?