码迷,mamicode.com
首页 > 数据库 > 详细

PHP Laravel框架 多数据库连接方法

时间:2018-07-11 14:43:21      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:img   ble   数据   数据库   ons   tab   fun   protect   ace   

1. 在config 下database.php中配置数据库连接  然后在使用时直接用connection指向该连接即可

技术分享图片

 

DB::connection(‘connections-theatre‘)->table(‘tb_order_ticket‘)->insert($data);

 2. 在model中重定向到指定数据库连接

技术分享图片

 

<?php

namespace App\ModelTh;class ThBase extends Base
{

    protected $connection = ‘connections-theatre‘;

    public static function ******(){
        ......
    }

}

 

PHP Laravel框架 多数据库连接方法

标签:img   ble   数据   数据库   ons   tab   fun   protect   ace   

原文地址:https://www.cnblogs.com/dereckbu/p/9293668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!