I have a string in UTF8 like:
Thermal Oxide: 0 Å to 40 μm
and I want to save it in SQL Server.
When I save it in data type ntext/nvarchar - it saves like this:
Thermal Oxide: 0 ? to 40 ?m
What can I do?
|
I have a string in UTF8 like:
and I want to save it in SQL Server. When I save it in data type ntext/nvarchar - it saves like this:
What can I do? |
||||
|
Precede the quoted string with
|
|||
|
|
Actually, no you don't - you have a unicode string. UTF8, however, only applies to how it is encoded, i.e. storage. If you mean you want to store it, fine; simply: make sure the column you store it in is
|
|||||||
|
Nvarcharis definitely able to store this string - no problem at all. – marc_s Feb 23 '12 at 11:26