You can iterate over the opened connections by simply passing the manager object to a foreach clause. This is possible since Doctrine_Manager implements special IteratorAggregate interface.
The IteratorAggregate is a special PHP interface for implementing iterators in to your objects.
// test.php
// ...
foreach($manager as $conn) {
echo $conn->getName() . "\n";
}