我在尝试让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,无论我做什么,我都无法让这个可怜的东西工作。我快要忘记了......
任何人都有类似的问题并修好了吗?
非常感谢提前
马特