Thanks for all the help! I got it working using the default charset and
explicitly setting the necessary columns to UnicodeCol, I am going to try
using use_unicode just to verify.

Thanks

 Glenn

On Jan 7, 2008 3:26 PM, Oleg Broytmann <[EMAIL PROTECTED]> wrote:

> On Mon, Jan 07, 2008 at 03:13:18PM -0500, Glenn MacGregor wrote:
> > My mistake, not sure what happened, but when I set the charset=latin1 it
> > fails in the same place as it fails without the charset set. That is
> > cursors.py line 146 which encodes the query using latin1 in both cases,
> > means that mysql default charset for the connection is latin1.
>
>   Very strange. The offending character can be decoded from latin1 without
> any problem:
>
> >>> unicode("\xc3", "utf-8")
> Traceback (most recent call last):
>  File "<stdin>", line 1, in <module>
> UnicodeDecodeError: 'utf8' codec can't decode byte 0xc3 in position 0:
> unexpected end of data
>
> >>> unicode("\xc3", "latin1")
> u'\xc3'
>
> Oleg.
> --
>     Oleg Broytmann            http://phd.pp.ru/            [EMAIL PROTECTED]
>           Programmers don't die, they just GOSUB without RETURN.
>
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
sqlobject-discuss mailing list
sqlobject-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss

Reply via email to