vote up 0 vote down star

I'm trying to insert a string into a MySQL database. I can insert it by running the query on the server, but when I try to use my C# source file to insert "Iñtërnâtiônàlizætiøn", I get "Iñtërnâtiônàlizætiøn". I've tried adding it as a parameter and adding ;charset=utf8 to my connection string, but no look. The table in the database has utf8 as it's character set. Am I missing something.

This is my code (using a StringBuilder):

sqlBuffer.Append(string.Format(@"INSERT `resources` (id, somefield) VALUES (20004,'Iñtërnâtiônàlizætiøn');");
flag

76% accept rate
The same happens with SQL Server, even if I drop the @. I'm totally baffled by this. I've even tried adding specifying the string in escaped unicode format (\uXXXX). – Echilon Apr 22 at 8:20
On SQL Server, is your DB field nvarchar and are you using N'' ("INSERT resources (id, somefield) VALUES (20004, N'Iñtërnâtiônàlizætiøn');")? – chris Apr 22 at 8:41
It is an nvarchar and I am using N' – Echilon Apr 22 at 9:49

1 Answer

vote up 0 vote down

You need to specify that it's unicode/utf8 with N'' or _utf8'':

sqlBuffer.Append(string.Format(@"INSERT `resources` (id, somefield) VALUES (20004, N'Iñtërnâtiônàlizætiøn');");
link|flag
No luck I'm afraid, still a line of garbage when the query is run. – Echilon Apr 22 at 7:29
btw, did you save the .cs file that cointains the text 'Iñtërnâtiônàlizætiøn' with encoding? Check VS, Save as and click the arrow on the save command. – chris Apr 22 at 8:44
It's saved as UTF8. – Echilon Apr 22 at 9:49
Are you sure that the data in the DB is incorrect? Does the tool that you use for querying support UTF8? – chris Apr 22 at 11:52
Yes, whether I view it in a GUI tool or through a browser, it's the same. I can view the correct data in both when I manually run the query using the same GUI tool. – Echilon Apr 22 at 15:38
show 2 more comments

Your Answer

Get an OpenID
or

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