how to remove 'out of range error'

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
eshban
Forum Contributor
Posts: 184
Joined: Mon Sep 05, 2005 1:38 am

how to remove 'out of range error'

Post by eshban »

hi, i got a following error while inserting data from my php program.
Out of range value adjusted for column 'requestid' at row 1
what can i do, and how to remove this error

please reply
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

This is usually a type conflict (like inserting a string into an integer field) or a potential conflict with autoincrements. Try checking your field types and the data you are inserting.
Post Reply