Multiple database connection in cakephp 3

前端 未结 4 850
长情又很酷
长情又很酷 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:28

    You can declare the defaultConnectionName() method on the tables that will use by default another connection. In any of your Table classes:

    public static function defaultConnectionName()  
    {
        return 'another_config_name';
    }
    

提交回复
热议问题