Re: preparedStatement

2003-02-26 Thread Pillai Jaideep, App Spec, SCS-SD
R U sure tname variable holds exactly the value U want ? -Original Message- From: Shahata, Ash [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 5:50 PM To: [EMAIL PROTECTED] Subject: preparedStatement Hi there, I'm getting stuck with the following procedure using prepared

Re: stupid question

2003-02-19 Thread Pillai Jaideep, App Spec, SCS-SD
Raul, I take it that your question is whether static methods are explicitly synchronized by the JVM? The answer is, NO, they are not. No harm if the static method does not use any global static variable within the class, every thread entering the method would get its own stack for execution of

Re: Replacing JSP with PHP?

2003-02-19 Thread Pillai Jaideep, App Spec, SCS-SD
Martin, All the points you have listed basically compares the benfits of a strongly typed OO language over a weakly typed non-OO language. None of the points listed would matter to a person interested in developing a simple web based application. But that does not answer the basic question -

On the MQ code snippet

2003-02-12 Thread Pillai Jaideep, App Spec, SCS-SD
Hi Zerbe, I do not see your concern in the code snippet attached by Urvesh. The JVM guarantees that constructors are thread safe. Your cobcern should only apply when the instantiation happens within a method that is not synchronized and hence not thread safe. Thanks, Jaideep.

Re: Bar/Pie/Graph Chart Generation?

2002-12-29 Thread Pillai Jaideep, App Spec, SCS-SD
Hi, Try JFreeChart at http://www.object-refinery.com/jfreechart/index.html Pretty impressive features. -Original Message- From: Steven J. Owens [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 6:57 AM To: [EMAIL PROTECTED] Subject: Bar/Pie/Graph Chart Generation? Hi

Re: session timeout setting

2002-12-20 Thread Pillai Jaideep, App Spec, SCS-SD
It is important to make a difference between a user session and a HTTP session. Many user sessions on the same browser instance will be just one HTTP session. session.setMaxInactiveInterval allows U to set a idle timeout(timeout between 2 successive requests) on the HTTP session. One way to handle