Marek Simon wrote:
run this for your data abase:
ALTER DATABASE db_name
DEFAULT CHARACTER SET utf8 COLLATE utf8_persian_ci
then run this for each table already in the database :
ALTER TABLE table_ CONVERT TO CHARACTER SET utf8 COLLATE utf8_persian_ci;
replace collation and/or character set as appropriate
Bookmarks