interfasys
Verified User
Things to watch for when going to MySQL 4.1
I've recently upgraded mysql on a server and here are some oddities I ran into.
-Table definitions have changed. Somehow the size of VARCHAR was adjusted to the larger stored value (or sometimes to something that doesn't make sense). This breaks a lot of scripts which would want to store larger sets of data.
-There are some charset problems if you import data from another version. You have to make sure that your scripts understand utf-8 or that you create a table with the charset you want it to use. Usually Latin1.
Maybe more things?
I've recently upgraded mysql on a server and here are some oddities I ran into.
-Table definitions have changed. Somehow the size of VARCHAR was adjusted to the larger stored value (or sometimes to something that doesn't make sense). This breaks a lot of scripts which would want to store larger sets of data.
-There are some charset problems if you import data from another version. You have to make sure that your scripts understand utf-8 or that you create a table with the charset you want it to use. Usually Latin1.
Maybe more things?