Jump to content

Error 1265


aesir5

Recommended Posts

When my php script tries to submit my query, I get:

[!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]Error 1265: Data truncated for column 'data15' at row 1[!--colorc--][/span][!--/colorc--]


My query looks something like this:

[code]INSERT INTO table1 (submit_date, data1, data2, data3, data4, data5, data6, data7, data8, data9, data10, data11, data12, data13, data14, data15, data16, data17, data18, data19, data20, data21) VALUES ('2006-04-29 12:50:07', '300000', '2', '400000', '1', 'good', 'yes', '275000', '7', 'Rick', 'James', '234-235-6434', '', 'first', '', '', '[email protected]', '25432 Bundy Drive', 'Los Angeles', 'CA', '90007', '')[/code]

As you can see, data15 is a blank value (''). When setting up the database, the field was created with:

[code]ENUM("first", "second", "third", "fourth"),[/code]

data13 is exactly the same, but it is not a blank value, as indicated above. I've looked in the MySQL 5.0 documentation and it says that you can have blank values for ENUM data. It gives the example ENUM(one, two, three) and says that it would allow NULL, '', 'one', 'two', and 'three' as values. So I can't figure out what going on here, and can find very little info on this error.

Some help on this would be much appreciated. Thanks.



Link to comment
https://forums.phpfreaks.com/topic/8735-error-1265/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.