Due to mathematica constraints I\'ve to use the BigInteger class to represent values.
After some calculations I would like to store the result (given by 2x BigIntege
I would recommend using a Blob and then the BigInteger(byte[] val) constructor to go from byte array to BigInteger, and the BigInteger#toByteArray() method for the other way.
BigInteger(byte[] val)
BigInteger#toByteArray()