I'm currently again working on a program from when I was, umm... less capable. It has a number of problems:
- The database collation is
latin1_swedish_ci
. I would like to convert it to utf8. How would I do this? - The database has some fields that are boolean values stored as 0 or 1. However, the fields are
varchar
s instead ofbool
s. How can I convert these?