> My db charset IS "UTF-8 Unicode (utf8)" and collation is > "utf8_unicode_ci". If you need any other info, let me know
I'm not a mysql expert and until somebody suggests a better solution here is the workaround. Pass charset=None to avoid setting the charset to "utf8", which is the earlier behavior. db = web.database(dbn='mysql', db='test', user='joe', pw='secret', charset=None) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
