Top "Bigint" questions

Arbitrary-precision arithmetic (also called bignum arithmetic, multiple precision arithmetic, or infinite-precision arithmetic) indicates that calculations are performed on numbers which digits of precision are limited only by the available memory of the host system.

How to add or subtract very large numbers without bigint in C#?

So let me start by saying that I'm a newbie with little to moderate knowledge about C#. Coming to the …

c# bigint
How to use Int64(long) in php but not string?

How to user Int64 in php like dotnet、java、c++? For example: The datatype is bigint(20) in mysql,I want …

php long-integer bigint int64
What if I need a very very big autoincrement ID?

According to the MySQL website, the signed bigint can go up to 18446744073709551615. What if I need a number bigger than …

mysql bigint
can java's Long hold a SQL BIGINT(20) value?

I have a table in an SQL database where the values' data type is BIGINT(20), and I need to get …

java sql bigint
Fastest way to convert binary to decimal?

I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order: typedef struct { unsigned int part[4]; } …

c bigint bignum 128-bit
Convert Sqlite BigInt to Date

I have a Sqlite database that I am using as an ado.net job store for my Quartz.net scheduler …

sqlite date bigint
Storing dollar amounts in MySQL: INT vs LONG vs BIGINT

I am constructing a database where I need to store currency values. I am storing the currency values as cents ($100.00 = 10000 ¢). …

java mysql prepared-statement long-integer bigint
Efficient 128-bit addition using carry flag

I'm using a 128 bit integer counter in the very inner loops of my C++ code. (Irrelevant background: The actual application …

c++ gcc assembly bigint carryflag
How to specify a BIGINT literal in T-SQL?

Aside from wrapping my literal in a CONVERT function, is there a way to specify that I want e.g. 12345 …

sql-server tsql long-integer literals bigint
rails3 bigint primary key

I would like to create a bigint (or string or whatever that is not int) typed primary key field under …

ruby-on-rails ruby-on-rails-3 primary-key bigint