RE: problem with simultaneous query submissions

2004-11-23 Thread Phillip Qin
bject: RE: problem with simultaneous query submissions here is my dopost method // Code starts here public void doPost(HttpServletRequest req,HttpServletResponse res) throws IOException, ServletException { System.out.println("Inside doPost"); Strin

problem with simultaneous query submissionS

2004-11-23 Thread Satish Plakote
here is my dopost method // Code starts here public void doPost(HttpServletRequest req,HttpServletResponse res) throws IOException, ServletException { System.out.println("Inside doPost"); String strQueryFlag =req.getParameter("new"); if(Integer.parseInt(st

RE: problem with simultaneous query submissions

2004-11-22 Thread Satish Plakote
trieve data and show.. all the filtering has to be done from objects in memory so thatit takes the minimum possible time. is the huge amount of data that i am storing that causes the problem ??? rgds satish -Original Message----- From: QM [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 2

Re: problem with simultaneous query submissions

2004-11-22 Thread QM
Please post a *new* message when writing to the list. Replying to an old (unrelated) message confuses thread-aware mailers, which makes your question harder to find (and thus answer). On Tue, Nov 23, 2004 at 07:13:21AM +0530, Satish Plakote wrote: : I have written a servlet that takes the inpu

problem with simultaneous query submissions

2004-11-22 Thread Satish Plakote
hi, i am developing a search engine for my small database. I have written a servlet that takes the input from user , queries the database and creates objects of the information that is recieved. These objects (approximatley 10 ) are stored in the ArrayList which put in the session.using