johnf wrote: > Hi, > > Postgres defaults to implicit transactions (any insert,update,delete will > automaticly start a "begin transaction". But requires a "commit" to complete > the transaction. > > What should the value of "isTransactionManager" be - True or False? > >
isTransactionManager is True if the bizobj in question owns the current active transaction. See dApp.getTransactionToken(): """Only one bizobj at a time can begin and end transactions. This allows the bizobj to query the app for the 'token', which is simply an acknowledgement that there is no other transaction pending. If the bizobj gets the token, further requests for the token will receive a reply of False, meaning that they should not be handling the transaction. """ _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]
