Problem in groovy

2010-10-06 Thread Naveen Kumar
Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause that is EntityCondition.makeCondition in the delegator.find(), but it is taking only 2 condition when third condition is given it is giving error, can any one suggest me how to do

Re: Problem in groovy

2010-10-06 Thread Nicolas Malin
Hi Naveen, You need prepare a EntityConditionList to embedeed your three conditions, and pass EntityConditionList to findList function Nicolas Le 06/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause

Re: Problem in groovy

2010-10-06 Thread Sumit Pandit
/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause that is EntityCondition.makeCondition in the delegator.find(), but it is taking only 2 condition when third condition is given it is giving error, can

Re: Problem in groovy

2010-10-06 Thread Naveen Kumar
Nicolas Le 06/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause that is EntityCondition.makeCondition in the delegator.find(), but it is taking only 2 condition when third condition is given

Re: Problem in groovy

2010-10-06 Thread Naveen Kumar
to findList function Nicolas Le 06/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause that is EntityCondition.makeCondition in the delegator.find(), but it is taking only 2 condition when

RE: Problem in groovy

2010-10-06 Thread Santosh Malviya
to findList function Nicolas Le 06/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application requires 3 where clause that is EntityCondition.makeCondition in the delegator.find(), but it is taking only 2 condition

Re: Problem in groovy

2010-10-06 Thread Sumit Pandit
: Hi Naveen, You need prepare a EntityConditionList to embedeed your three conditions, and pass EntityConditionList to findList function Nicolas Le 06/10/2010 08:11, Naveen Kumar a écrit : Hi All, I was using delegator.find() in my groovy. My problem:- My application

Re: Problem with groovy

2010-09-30 Thread Naveen Kumar
Hi Bilgin, Thanks for your help, it worked. :) Regards, Naveen. On Thu, Sep 30, 2010 at 1:50 AM, Bilgin Ibryam bibr...@gmail.com wrote: makeValue - Creates a Entity in the form of a GenericValue without persisting it Then you have to use .create() method to persist it. Bilgin On Wed,

Problem with groovy

2010-09-29 Thread Naveen Kumar
Hi All, I am using *delegator.makeValue* in groovy to store Payment Entity, I am not getting any error in logs but data is not inserting to Entity, can anyone help me to solve the issue. Regards, Naveen.

Re: Problem with groovy

2010-09-29 Thread Bilgin Ibryam
makeValue - Creates a Entity in the form of a GenericValue without persisting it Then you have to use .create() method to persist it. Bilgin On Wed, Sep 29, 2010 at 3:54 PM, Naveen Kumar naveen.new...@gmail.comwrote: Hi All, I am using *delegator.makeValue* in groovy to store Payment