What's the column type in SQL Server? To store Unicode data it needs to be one of the "N" family: NCHAR NVARCHAR NTEXT.
Your ADO.NET parameter object (if you're using one, and you probably should be for other reasons) needs to be SqlDbType.NChar, SqlDbType.NVarChar, or SqlDbType.NText
Chip H.
____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first