Diez B. Roggisch schrieb:
> What does "past the session" mean here?

What I meant is that you're executing an sql statement bypassing the
session. The session is not affected by that.

> Or better yet, how does one do the bulk-*-stuff?

For instance, you can do a bulk delete like this:

DBSession.query(User).filter(User.is_spammer == True).delete()

But that works only with deletes and updates, not with inserts.

-- Christoph

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" 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/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to