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
2010-09-03 12:25:42