NHibernate won't decode UTF-8 from MySql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:55:46Z http://stackoverflow.com/feeds/question/820331 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/820331/nhibernate-wont-decode-utf-8-from-mysql 0 NHibernate won't decode UTF-8 from MySql Poppy 2009-05-04T14:22:30Z 2009-05-04T14:22:30Z <p>Hey,</p> <p>I have populated a MySQL table with <strong>utf-8</strong> strings (using a python script).<br> You can assume that the string in the DB was correctly encoded (I've verified this by extracting the string from MySQL Query Browser and running a utf-8 decode... got my original unicode string).</p> <p>Now the problem begins when I try to load this string using <strong>NHibernate</strong>. <br> NHibernate should supposedly use utf-8 to decode the string stored in the DB. Instead, it decodes it incorrectly, and you get human-unreadable unicode. I have no idea what type of decoder it uses.</p> <p>The correct utf-8 form of an example string (this is how it is stored in the DB):</p> <blockquote> <p>(226, 128, 152 = left quote) (226, 128, 153 = right quote)<br></p> </blockquote> <p>NHiberante generated the following Unicode characters:</p> <blockquote> <p>226, 8364, 732, 226, 8364, 8482</p> </blockquote> <p>Things I've already tried:</p> <ul> <li>Update to the latest MySQLConnector/Net</li> <li>append ;charSet=utf8 to the MySQL connection string</li> <li>Use AnsiString type in my mapping file</li> <li>Set the table and column charset to utf-8 (in MySQL)</li> </ul> <p>Nothing helped. I'm clueless at this point. Any help would be much appreciated!</p>