On Mon, Jan 07, 2008 at 02:38:08PM -0500, Glenn MacGregor wrote:
> Changing the connection string to incorporate charset=latin1 fails at a
> different place. With that in the string the failure happens at
> dbconnection.py line 383.

   Line 383 in the trunk is

        return ("INSERT INTO %s (%s) VALUES (%s)" %
                (table, ', '.join(names),
                 ', '.join([self.sqlrepr(v) for v in values])))

   so you probably got an error from sqlrepr, right? What was the error? If
it is UnicodeDecodeError - I do not understand where from have you got
unicode now. You are using str everywhere, right?

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