I've a connection string like below
"Server=localhost;Uid=root;Pwd='abcd';Database=testdb;charset=utf8;ConnectionReset=True;"
Any insertion to a database table column with unicode character is inserted as special characters. Everything works fine if i remove "ConnectionReset=True;" from my connection string. Any idea whats going on here?
Note: I believe my code is fine because insertion of unicode is fine when I remove ConnectionReset=True; part from the connection string.