Mike Bernson wrote:
> I have attached the code doing the write to the database
> and a traceback with local variable being display for
> each frame.
> 
> I am also attaching a run with nothing catching the error
> so you can see the simple traceback with the exception.
> 
> Here is output from mysql show this has gone a long way
> into the file before getting the exception
> 
> The code is parsing a XML tree and write records into a database
> 
> The records are being buffer and written from the code I have included.
> 
> 
> mysql> select count(*) from bids;
> +----------+
> | count(*) |
> +----------+
> |  3312460 |
> +----------+
> 1 row in set (0.00 sec)

looks like the string 'Bids' is being passed to execute

   execute(self.statement, [{...}, {...}, {...}, u'Bids'])


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to