in reply to Is it possible to connect to multiple DBI servers in a single connection string?
If you're trying to do cross-db joins or something, you'll have to do it in perl (or move all the data into one or the other, or a 3rd temp database).my $dbhA = DBI->connect($data_sourceA, $usernameA, $authA, \%attrA) +or die ...; my $dbhB = DBI->connect($data_sourceB, $usernameB, $authB, \%attrB) +or die ...;
|
|---|