View Single Post
  #4  
Old 07-21-2007, 05:10 AM
priyan priyan is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 133
priyan is on a distinguished road
Default 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...
Reply With Quote