MySQL连接器.NET和Unicode

我有一些严重的问题试图让MySql Connector for .NET将unicode文本插入到数据库中。 我已经阅读了这么多的论坛,并没有任何修复似乎工作。 我已经尝试过以下各种组合:

- Append ;charset=utf8 to connection string
- Append ;character set=utf8 to connection string
- Use 'N' prefix (although, I believe this is for MsSql only, but was worth a try)
- Set utf8 collations for database, table and columns
- Issue this command: SET NAMES UTF8
- Issue this command: SET CHARACTER SET UTF8
- Tried both Direct ad-hoc query and MySqlParameter as ways to insert

我正在使用MySqlConnector 6.4.3,不管我做什么,我都无法得到这个可怜的东西。 我快要疯了...

任何人有类似的问题,并修复它?

提前谢谢了

马特

链接地址: http://www.djcxy.com/p/60969.html

上一篇: MySQL Connector .NET & Unicode

下一篇: .NET MySQL Connector Conflicting DbProviderFactories