in reply to DBIx::Class Querying Multiple Databases

You will open a database “connection” by calling the connect() method of the Schema-object, as shown in the documentation page for DBIx::Class.   This connection-handle (called $schema in the docs) is what you will use when talking to that particular database.   Your application may open several database connections and perform queries and other operations against any of them, at will.