Due to math limitations, I have to use the BigInteger class to represent values.
After some calculations, I would like to save the result (specified by 2x instances of BigInteger) in Mysql ...
What is the best data type for storing such an object?
I was thinking about using Blob to store the binary format of these results (128 bits)? But I would like to avoid unnecessary type conversions.
source share