QUOTE (dfgdhn @ Feb 4 2008, 05:27 AM)

to solve this issue for all database (there a lot of varchar, text, tinytext columns

) - you can make this step -
1) export sql including create statements from your database to text file
2) at this text file change your codepage for all tables to utf8
3) import text fiel back to database
for example you can use simple phpmyadmin for this operation

the same solution can be for cre loaded when you will want change it to cyrillic
Hello,
I only dont`t understand point "2)"
I already have the exported textfile.
How can I change now to cyrillic - (windows - 1251)? I´ve no clue, which entries I shall find.
In my case cyrillic characters are displayed but some are always missing (f.e. only "рубл" instead of "рубль")
the exported sql from the database for categories looks like that:
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`categories_id` int(11) NOT NULL auto_increment,
`categories_image` varchar(64) default NULL,
`parent_id` int(11) NOT NULL default '0',
`sort_order` int(3) default NULL,
`date_added` datetime default NULL,
`last_modified` datetime default NULL,
PRIMARY KEY (`categories_id`),
KEY `idx_categories_parent_id` (`parent_id`)
) TYPE=MyISAM AUTO_INCREMENT=23 ;
#
# Daten für Tabelle `categories`
#
INSERT INTO `categories` VALUES (22, '', 0, 0, '2008-02-04 14:12:50', NULL);
could you give me a hint, what exactly i would have to change in order to display the cyrillic characters fully right?
thanks to anyone who can give me a tip!