I am using loopback framework with nodejs.
Is it possible to connect multiple database at a time.
For example I have two different database.
1. Mysql Database - A
2. Postgresql - B
Some pages get data from A database and some pages need get data from B database. could it be possible to do that?
More Details:
Lets say we have two modules.One module interacted with MySQL and another module interacted with postgreSQL.