Re: MySQL supports indian language character sets Hi,
You missed out the basics that you have to specify the character set as UTF8, otherwise the system will assign the default character set of the mysql server.
create table lang_test (id integer not null primary key, telugu varchar(100));
insert into lang_test values (1,'శుక్రవారం జనవర');
change the table character set and try.
__________________ Keep smiling... |