Viewing 2 posts - 1 through 3 (of 3 total)
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...
April 11, 2003 at 1:05 am
#453831
Try the following:
INSERT INTO YourTable (YourNVarCharColumn) VALUES ( N'Your korean data' );
April 10, 2003 at 7:38 am
#453710