Forum Replies Created

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

  • RE: Unicode string literals in SQL queries

    The datatype is nvarchar. The problem is not the datatype of the column but the literal in my sql query. If the leading N before the literal is omitted, the...

  • RE: unicode data

    Try the following:

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

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