views:

12

answers:

1

Hi, I am trying to insert into sql db japaneese character and it goes to db as ??? do you know what am I doing wrong?

A: 

Add "N" in front of the insert statement

insert into table values (1,2,N'Unicode text')
Christian W