I am trying to connect to multiple databases in cakephp 3. I have tried many times but all questions and answers are in cakephp 2
cakephp 3
cakephp 2
You can have a try with useDbConfig model property if it works for you.
class Example extends AppModel { public $useDbConfig = 'default1DbConfigSettings'; //The useDbConfig property is defaulted to the ‘default’ database connection. }