On Thu, 6 Dec 2007, Kranti K K Parisa [GetSet-India] wrote:
> I realized it after posting it and then i have changed it to the following
>
> CallableStatement proc=null;
> try{
> for (int i=0;i<200;i++){
> for(int j=0;j<4;j++){
> proc=con.prepareCall("{call test_function()}");
You're still doing the exact same thing, initializing proc inside the
loop. You need to do this once outside the loops.
Kris Jurka