vote up 1 vote down star

I have a client database with English and French data in windows-1252 encoding. I need to fetch this data as part of an AJAX call and send it in UTF-8 format.

Is there a way I can pass the data through a stored proc to perform this conversion?

My web app cannot be altered to perform this conversion itself.

flag

2 Answers

vote up 0 vote down

try to cast as nvarchar or even better use nvarchar columns

link|flag
NVARCHAR is UTF-16. – RBarryYoung Sep 4 at 19:59
vote up 0 vote down

Microsoft has published a UTF-8 CLR UDT for SQL Server 2008 that can be installed on SQL Server 2005. See here: msdn.microsoft.com/en-us/library/ms160893.aspx .

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.