Multiple database connection in cakephp 3

前端 未结 4 857
长情又很酷
长情又很酷 2020-12-09 04:55

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

4条回答
  •  情话喂你
    2020-12-09 05:15

    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.
    }
    

提交回复
热议问题