你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
宋小北 - 正在输入...
赞同来自: kehao 、瞌睡o0
FiveSay - 成武
赞同来自: blue5tar
motecshine - 菜鸟
赞同来自:
鸡翅多
<?php return array( 'default' => 'mysql', 'connections' => array( # Our primary database connection 'mysql' => array( 'driver' => 'mysql', 'host' => 'host1', 'database' => 'database1', 'username' => 'user1', 'password' => 'pass1' 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ), # Our secondary database connection 'mysql2' => array( 'driver' => 'mysql', 'host' => 'host2', 'database' => 'database2', 'username' => 'user2', 'password' => 'pass2' 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ), ), );
$users = DB::connection('mysql2')->select(...);
<?php class SomeModel extends Eloquent { protected $connection = 'mysql2'; }
要回复问题请先登录或注册
4 个回复
宋小北 - 正在输入...
赞同来自: kehao 、瞌睡o0
FiveSay - 成武
赞同来自: blue5tar
motecshine - 菜鸟
赞同来自:
鸡翅多
赞同来自:
http://fideloper.com/laravel-m ... tions
首先声明连接
大致的意思是在查询的时候,指明你前面声明的连接名称
或者在eloquent的model里面指明你要使用的连接