unicode data

  • Hi,

    I am trying to insert/update a nvarchar column with korean data.SOme how it converts my data to ????.

    How can i update this feild.

    ANy help is higly appreciated.

    Thanks,

    MK

  • r u using N prefix before inserting unicode data...see BOL for details help

    Asif

    mdasif@wol.net.pk

  • Can you post the code you use so we can see it?

  • Try the following:

    INSERT INTO YourTable (YourNVarCharColumn) VALUES ( N'Your korean data' );

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply