DB类连接第二个数据库的方法
在laravel中如果使用DB类进行第二个数据库的链接我们只需要设置config/database.php中添加一个数据库设置,如:
1
2
3
4
5
6
7
8
9
10
|
'mysql_branch' => [ 'driver' => 'mysql' , 'host' => '192.168.2.56' , 'port' => '3306' , 'database' => 'test' , 'username' => 'root' , 'password' => 'root' , 'charset' => 'utf8mb4' , 'collation' => 'utf8mb4_unicode_ci' , ], |
在链接的时候加上一个函数DB::connection(‘mysql_branch')->table(‘table')->get()`
这样就可以了
使用ORM时候连接第二个数据库
在model类中添加私有属性如下:
1
2
3
4
5
6
7
|
class Branch extends Model { //取消时间戳 public $timestamps = false; //链接外部数据库 protected $connection = 'mysql_branch' ; } |
这样就可以了!
以上这篇在laravel中实现ORM模型使用第二个数据库设置就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/liukai6/article/details/79158899