I know this question has been asked more than once here, but I couldn't find a solution.
We are using a database where we are storing the facebook id as a BIGINT(20).
create table users(
fb_id bigint(20) NOT NULL,
user_name varchar(30) NOT NULL,
CONSTRAINT uk_name unique (user_name),
CONSTRAINT pk_fb_id primary key (fb_id)
)ENGINE=INNODB;
But the PDO engine of PHP can insert only the max integer value of PHP, i.e. 2147483647.
$stmt->bindParam(':fb_id', $this->fb_id, PDO::PARAM_INT);
This, I understand, is quite obvious since we are limited by the maximum value of integer in PHP. I tried to use the string -
$stmt->bindParam(':fb_id', $this->fb_id, PDO::PARAM_STR);
but still it doesn't work.
I want to know if there could be a workaround to store it as bigint.
PDO::PARAM_INTbut setting the value to a string with a really big number?"892347932075913"– Stephen Sarcsam Kamenar Aug 13 '12 at 16:29PDO::PARAM_INTthen thelarge stringgets reduced to2147483647, the maximum allowed value. – banskt Aug 13 '12 at 16:37PDO::PARAM_STRwith the value as alarge stringdoesn't work either? I have no idea then. – Stephen Sarcsam Kamenar Aug 13 '12 at 17:24