insert utf 8 encoding to sql db in classic asp
I am tr开发者_运维问答ying to insert into sql db japaneese character and it goes to db as ??? do you know what am I doing wrong?
Add "N" in front of the insert statement
insert into table values (1,2,N'Unicode text')
精彩评论