I am working with a SQL Server 2005 Express instance. Any attempt to enter Unicode string results in the sequence of question marks (????) (using both programmatically or by using a table editor (for example VS server explorer -> edit table) I think That either SQL Server 2005 Express does not support Unicode or it requires some additional configuration to enable Unicode. Please help.
This should be a datatype nvarchar ( Note n < / Em>) and you should use the N prefix when using strings.
INSERT < Table & gt; (Some fields) value (N'string .. for inserting)
Comments
Post a Comment