The short answer is 'NO'... This all goes back the the unicode issues of MySQL in python. I don't know if this is THE fix but it fixes the problem I have using TG. I found it floating around on this group somewhere. I didn't come up with it. My guess is is simply a hack that masks a root cause issue...
On 12/4/06, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > > On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > I just installed SO 0.7.2 and ran it against my app using the svn trunk > > version of TG. > > > > I had to modify the mysqlconnection.py file to include the unicode test > > at line 77 again. After that, my app seems to be happy again... > > > again? did you reported this to SO mailing list? > > > - myquery = unicode(query, self.encoding) > > > > + if type(query) != unicode: > > + myquery = unicode(query, self.encoding ) > > + else: > > + myquery = query > > > > > > Nicky > > > > > > > > > > > > > -- -- Nicky Ayoub G-Mail Account --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

