在 laravel 模型中更改数据库连接
本文介绍了在 laravel 模型中更改数据库连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我使用 Laravel 4.2,我想要在我的一个模型中使用 external 数据库,这是我的模型代码:
So i work with Laravel 4.2, what i want is in one of my models use an external database, this is my model code :
所以,如果有人有任何想法,我将非常感激.
So please if someone has any idea i will be very appreciative.
推荐答案
不同的模型可以有不同的数据库连接.所以您的模型使用正常的默认连接 - 但您的McibModel"模型可以使用另一个连接:
Different models can have different database connections. So your models use the normal default connection - but your 'McibModel' model can use another connection:
然后在您的数据库连接文件中 - 您将拥有如下内容:
Then in your DB connection file - you would have something like this:
这篇关于在 laravel 模型中更改数据库连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!