Tagged Questions

3
votes
2answers
203 views

mySQL 5.0.45 LAST_INSERT_ID() and values larger than a signed int

I'm attempting to use LAST_INSERT_ID on an auto incremented index that has moved past the signed int value 2147483647. This column is an unsigned int. However, LAST_INSERT_ID() is returning an invalid ...
2
votes
4answers
101 views

What to do when you need integers larger than 20 digits on mysql?

Seems like BIGINT is the biggest integer available on MySql, right? What to do when you need to store a BIGINT(80) for example? Why in some cases, like in somewhere in the Twitter API docs, they ...
2
votes
3answers
261 views

Numeric String (arbitrary size) -> Multiple Integers

I'm running into a problem because my database has BIGINT data (64-bit integers) but the version of PHP I'm running is only 32-bit. So when I pull out value from a table I end up with a numeric ...
2
votes
2answers
3k views

Convert binary string to bigint in MySQL?

I am attempting to hash a string to a 64-bit value (bigint) in MySQL. I am aware of the MD5() function, which returns a 128-bit hash as a binary string. I'd be happy to just take the bottom or top 64 ...
1
vote
2answers
50 views

mysql alter int column to bigint with foreign keys

I want to change the datatype of some primary-key colymns in my database from INT to BIGINT. The following definition is a toy-example to illustrate the problem. CREATE TABLE IF NOT EXISTS `owner` ( ...
1
vote
1answer
209 views

BIGINT shifting in MySQL

Hey all, I think this might be a bug, but it's killing me. I am using MySQL 5.1.41 on an Ubuntu Linux server. I'm trying to write a function to create a random signed BIGINT value. Because the ...
1
vote
4answers
485 views

how to cast bigint to prevent sql injection in php?

i am using php and running sql queries on a mysql server. in order to prevent sql injections, i am using mysql_real_escape_string. i am also using (int) for numbers casting, in the following manner: ...
0
votes
1answer
16 views

How to change bigint to int in mysql, with table having foreign keys

I recently noticed that there are several bigint type fields in one of my databases that could be replaced with type "int". The problem is that the database is already online and in use and also that ...
0
votes
4answers
151 views

JAVA, SQL exception while retrieving a value

I am using Netbeans 6.9.1, and glassfish 3.1, the DB is MySql. There is a table in the database called HotelNames, i need to write a SQL and pass the Hotel name to get its hotel ID. I get an ...
0
votes
3answers
190 views

mysql, what if I need a very very big autoincrement ID?

hi according to mysql website. the signed bigint can go up to 18446744073709551615 What if I need a number bigger than that for the auto-incrementing primary key?
0
votes
2answers
513 views

How to make Rails generate 'schema.rb' with bigint support for MySQL?

I am using Rails 3.0.5. I am using MySQL as a database storage. I have a model in which one of the columns needs to be BIGINT. I am using the following in my create migration file: t.column ...
0
votes
2answers
303 views

MySQL BETWEEN on unsigned bigint

I'm working on a rails app that has an IPv6 model. I'm storing the IPv6 address in 2 32-bit ints and a 64-bit int: ...