I have been working on a site that had MySQL strict mode enabled. One person had a long user agent string that was logged in our log table and unfortunately the user agent string exceeded the limit for the column and thus caused a warning. The data was not inserted at all.

To avoid such troubles, should I disable the MySQL strict mode or should I come up with something on my own (I'm using PHP)?

link|improve this question

1  
You could check for the string's length on application level before inserting it. – Pekka Apr 3 '11 at 8:29
@Pekka: How would you do it reasonably? I don't want to be calling methods everywhere on the software. – rFactor Apr 3 '11 at 8:31
well, you presumably have to escape the incoming data anyway somewhere. A substr() there would work and not add too much clutter. If your application works with strict mode otherwise (which is great) I'd go that road and leave the mode as it is – Pekka Apr 3 '11 at 8:33
feedback

3 Answers

up vote 4 down vote accepted

Validate the data before inserting it into your database. If a string is too big to fit in your table, either your column is too narrow, or the data is invalid. You need to decide whether you truncate it before storing it, do some error reporting, or both.

Do not turn off the safety features of your DBMS, that's the completely wrong thing to do.

link|improve this answer
2  
I wish you could put more bold on that "not". And it would be nice if you could turn MySQL's strictness up to 11. – mu is too short Apr 3 '11 at 8:31
1  
I wasn't under the impression that the server mode is a safety feature. Although I guess it depends on your definition of safety feature – ChrisWue Apr 3 '11 at 8:33
@ChrisWue: I'd call "not silently mangling your data" a safety feature. – mu is too short Apr 3 '11 at 8:41
From my point of view, the DBMS should reject invalid data. Always. Not sometimes inserts adjusted values for invalid or missing values. I don't like magic happening. But you are also correct, the application can be coded to take this fact into account. – Mat Apr 3 '11 at 8:44
feedback

Would you rather have your data silently truncated (possibly leading to broken data) or would you at least like to know that you have a problem?

I'd recommend leaving strict mode enabled and bounds checking your data in your PHP. Your PHP application knows, or at least should know, what to do with a string that's too long. If you turn off strict mode and leave that decision to MySQL then MySQL will silently truncate your strings and you will end up with a database full of garbage.

Changing and fixing code is easy, fixing broken data is often impossible.

link|improve this answer
feedback

Well it's up to you try it with strict mode disabled and see how things work, I've never had an issue with it disabled but be careful.

However, if long user agents are the only issue with strict mode and you don't visually read them than I recommend just hashing your UA's or increasing the field length.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.