Comment 3 for bug 333223

Revision history for this message
GEM (nimp3) wrote :

thanks, I have this another solution :
I have change in postgresql.conf
#client_encoding = sql_ascii
by
client_encoding = unicode(value, "ascii")
     except UnicodeError:
         value = unicode(value, "utf-8")
     else:
         pass#
I have restart server and client, and problem is solve
does this solution solve all similar problem we coulld retrieve in some other code python module ?
A+