Store BigInteger into Mysql

后端 未结 4 623
予麋鹿
予麋鹿 2021-01-19 08:21

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

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-19 08:29

    MySQL has a BIGINT data type as shown in: http://dev.mysql.com/doc/refman/5.0/en/numeric-types.html

    You can try to use the BIGINT for that rather then doing conversion to binary formats which makes it whole lot more complex to my opinion.

提交回复
热议问题