Re: Paginated List Problem

2005-11-02 Thread Clinton Begin
You can't use the same paginated list for two different threads.  The root of this problem seems to have nothing to do with iBATIS...but does suggest a serious design problem in your application.  Sorry to sound harsh, but I wouldn't be doing you any favors if I softened that message.  :-/ Chee

Re: Paginated List Problem in Ibatis

2005-10-26 Thread Sabyasachi Biswas
Hi Larry,   Thank You for your response.   I have a instance variable Paginated List , that all my methods use . There are a large number of methods that use this Paginated List object. I had thought it would not be feasible by making so many objects of The Paginated List in each of my methods.   A

Re: Paginated List Problem in Ibatis

2005-10-24 Thread Larry Meadors
Why do you "have to use only one object of Paginated List"? You can use as many as you want. It sounds like your dao is storing the paginated list..that would be a really bad idea. Maybe you can explain what you are trying to do in more detail... Larry On 10/24/05, Sabyasachi Biswas <[EMAIL PRO

Paginated List Problem in Ibatis

2005-10-24 Thread Sabyasachi Biswas
Hi all,   I am having a problem using paginated List in my Project.   I am using the same Paginated List object for various purposes(I have to use only one object of Paginated List). The problem arises when there are concurrent users ,  the Paginated List Object returned should be different for di

Paginated List Problem

2005-10-24 Thread Sabyasachi Biswas
Hi all,   I am having a problem using paginated List in my Project.   I am using the same Paginated List object for various purposes(I have to use only one object of Paginated List). The problem arises when there are concurrent users ,  the Paginated List Object returned should be different for di