How to connect mysql database and Sybase database in one connection string in Perl?

I linked both databases, but used two connection strings. Is it possible to connect using one connection string for both.

+5
source share
1 answer

Perl's DBI architecture is divided into two main groups of software: DBI itself and drivers (DBD). Each RDBMS has its own Perl driver, and each driver has a connection string associated with it. You cannot create a "single" connection string.

+3
source

All Articles