in reply to Re^2: multiprocessing in perl
in thread multiprocessing in perl

Read DBI on threads. Basically, you will need to open a second connection from within your second thread, and then it's up to DBD::Oracle to be threadsafe.

Replies are listed 'Best First'.
Re^4: multiprocessing in perl
by shijumic (Novice) on Apr 15, 2009 at 18:44 UTC
    I didn't get that. Would you explain that using an example.I am very new to perl and especially to threads.

      What part of the linked documentation do you have problems with? The documentation discusses the problem quite well in my opinion.