Maybe if you add some methods like getProjectsForRole(int roleId) in the peer it would make your life easyer. it's the intend of the peer I think.

For the choice of handling the Criteria this way, it make sens since most of the time the Criteria is not reuse. Why bother cloning it and spending time for nothing?. Anyway, I'm only a user of the framework. Once you know it, everything goes fine :)

bye

Vinod_Thapliyal wrote:

Thanks it worked. But, I thought that orque should be flexible enough to allow me to use my criteria again. It makes a bit tedious to rewrite the same code that u have already written.



-----Original Message-----
From: Jean-Marc Lavoie [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 11:27 AM
To: Turbine Torque Users List
Subject: Re: Cann't use criteria two times.

The Criteria object is modified so the BasePeer can add some Cirteria of is's own, like the field requested by the object. It look like it mix up the BasePeer to reuse it. There was some discussion on that some weeks ago.

Simply create a new one, that make some line of code more, but it will work.

Good luck

Vinod_Thapliyal wrote:

Hi all,

I have created a criteria to query on one of my table. It involves join on tables. The first time I query on a table the results are returned. But, next time when I try to use the same criteria on the other table. It retunrs me an error. I tried a query on the second table by commenting the query for first table then I get the results. But, the two queries don't work together.

The criteria is:

criteria.addJoin(TurbineProjectsPeer.GROUP_ID,TurbineUserGroupRolePeer.GROUP_ID);

                      criteria.addJoin(TurbineUserGroupRolePeer.GROUP_ID,TurbineGroupPeer.GROUP_ID);

                      criteria.addJoin(TurbineUserGroupRolePeer.USER_ID,TurbineUserPeer.USER_ID);



                      criteria.add(TurbineUserGroupRolePeer.ROLE_ID,10);


                     Iterator = Projects;



Projects = TurbineProjectsPeer.doSelect(criteria).iterator();



                                  Projects = TurbineUserGroupRolePeer.doSelect(criteria).iterator();

I get the following error:

Error: org.apache.torqueException: Bad Conversion: java.lang.numberformatexception: silent


Any clue why its behaving like this?

vinod

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





Reply via email to