I absolutely am not at home here but MySQL documentation says:
http://dev.mysql.com/doc/mysql/en/miscella…functions.html:
A UUID is a 128-bit number represented by a string of five hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format:
.. and that is 36 characters indeed, if you want to store it as a string.
a 128 bit integer is a little higher than 3.4e+38 ( = 34 followed by 37 “0”s if you prefer!) in decimal notation and since range of a BIGINT is only -9223372036854775808 to 9223372036854775807 (far from 3.4+38) I guess you will have to store it as a string!
Another resource:
http://searchwebservices.techtarget.com/sD…i805876,00.html