Hi:
I'm using SA 2.8. I met a strange error. following is a piece of code:
flight.insert().execute(*(_insdict.values()))
it run without error. but after runing, some data in "flight" table is wrong,
another is right. So I change the code:
for d in _insdict.itervalues():
_flight.insert().execute(d)
now, it work well, but it cost too much time.
Anyone know what happen about it?? and it would occour in lastest SA version?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---