Re: findListIteratorByCondition in 12.04

2013-06-19 Thread Adrian Crum
@ofbiz.apache.org Subject: Re: findListIteratorByCondition in 12.04 Transactions are recommended for queries so you can ensure consistent data. Put your large processing jobs inside a loop that processes smaller sets of data - like 100 records or so. -Adrian On 6/15/2013 1:21 AM, Skip wrote: I have used

RE: findListIteratorByCondition in 12.04

2013-06-18 Thread Skip
-software.com] Sent: Saturday, June 15, 2013 1:09 AM To: user@ofbiz.apache.org Subject: Re: findListIteratorByCondition in 12.04 Transactions are recommended for queries so you can ensure consistent data. Put your large processing jobs inside a loop that processes smaller sets of data - like 100 records

Re: findListIteratorByCondition in 12.04

2013-06-15 Thread Adrian Crum
Transactions are recommended for queries so you can ensure consistent data. Put your large processing jobs inside a loop that processes smaller sets of data - like 100 records or so. -Adrian On 6/15/2013 1:21 AM, Skip wrote: I have used findListIteratorByCondition successfully in the past

findListIteratorByCondition in 12.04

2013-06-14 Thread Skip
I have used findListIteratorByCondition successfully in the past to process large files with no transaction in place. By putting a TransactionUtil.begin/end around the findListIteratorByCondition and a second TransactionUtil.begin/end around the actual writing of the data. This all worked just