How can i tell my code below to keep on trying to connect to the database until there is a connection, the max_retries does not seem to be working

POE::Session->create(
     inline_states => {
         _start => sub {
             my ($kernel, $heap) = @_[ KERNEL, HEAP ];

             my $dbpool = POE::Component::Pool::DBI->new(
                 connections     => 1,
                 dsn             => "DBI:Oracle:192.168.21.200:1521/CRMDB",
                 max_retries     => "-1",
                 username        => "test_db",
                 password        => "test_db"
             );

             # Outstanding queries keep the calling session alive.

                 $dbpool->query(
                 callback => "handle_result",
                 query    => "select cost_id  from cost where price= ?",
                 params   => [ "0.03872515" ],
                # userdata => "example"
             );

             $heap->{dbpool} = $dbpool;
         },

         handle_result => sub {
             my ($kernel, $heap, $results, $userdata) =
                 @_[ KERNEL, HEAP, ARG0, ARG1 ];

# Will be an arrayref of hashrefs.

               for  my $record (@{$results}) {
                 print  "$record->{COST_ID} \n";
             }

             my $dbpool = $heap->{dbpool};

            # Ask for a clean shutdown.
            $dbpool->shutdown;
         },
     },
 );

 POE::Kernel->run();
link|improve this question
Do you mean when you tweaked that max_retries variable, nothing happens? I say this because in your example, it's -1. – Tshepang Jun 14 '11 at 12:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.