On Thu, May 25, 2006 at 12:58:42PM +0100, Fadhley, Salim (FID) wrote:
> Now can I use transactions to bundle together a bunch of inserts
> that were not done via SQLBulder?
Transactions are served in backends by connections, so you must run
queries via the same connection:
tx = connection.tran
Using SQLBuilder & Transactions has substantially boosted my app's
sppeed. Now can I use transactions to bundle together a bunch of inserts
that were not done via SQLBulder?
For example the documentation says you can do:
trans = conn.transaction()
p = Person.get(1, trans)
To get an object via th