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();
max_retriesvariable, nothing happens? I say this because in your example, it's-1. – Tshepang Jun 14 '11 at 12:31