I recently updated my MySQL (and wamp to v3) and moved my old databases there.
Previously, field types such as varchar, char, text, etc would assume a default value of empty string if no value was given (even though I had no explicitly set this default while creating the table structure ).
But after the update when I try to run my previously working code, it gives me exceptions that
Field
<field_name>
doesn't have a default value
I'm guessing this is a setting in mysql or something. can anyone help me out?
thanks.