View Single Post
Old 03-28-2008, 06:52 AM   #1
Maskime
Green Mole
 
Join Date: Mar 2008
Posts: 1
MySQL smallint(6)...

Watch out!

In the table phpdig_sites the column 'port' is a smallint(6) which bounds are [-37676; 37676]. So if you put a port above those limits (which was my case... (42232)) MySQL convert the port so that it can go into the column.
I've replace the smallint by a bigint and it's working fine now.
Maskime is offline   Reply With Quote