我想在我的系統中組合多個資料庫。大多數時候資料庫是MySQL;但未來可能會有所不同,即管理員可以產生這樣的報告,這是使用異質資料庫系統的來源。
所以我的問題是Laravel 是否提供任何 Facade 來處理這種情況?或者其他框架有更適合問題的功能嗎?
在 Laravel 5.1 中,您指定連線:
$users = DB::connection('foo')->select(...);
默認,Laravel 使用預設連線。很簡單,不是嗎?
在此處閱讀更多:http://laravel.com/docs/5.1/database#訪問連接
來自 Laravel 文件:您可以存取每個連線使用多個連線時,透過 DB 外觀上的連線方法。傳遞給連接方法的名稱應與 config/database.php 設定檔中列出的連接之一相對應:
DB
config/database.php
使用 .env >= 5.0 (或更高)
.env
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=mysql_database DB_USERNAME=root DB_PASSWORD=secret DB_CONNECTION_PGSQL=pgsql DB_HOST_PGSQL=127.0.0.1 DB_PORT_PGSQL=5432 DB_DATABASE_PGSQL=pgsql_database DB_USERNAME_PGSQL=root DB_PASSWORD_PGSQL=secret
使用config/database.php
'mysql' => [ 'driver' => env('DB_CONNECTION'), 'host' => env('DB_HOST'), 'port' => env('DB_PORT'), 'database' => env('DB_DATABASE'), 'username' => env('DB_USERNAME'), 'password' => env('DB_PASSWORD'), ], 'pgsql' => [ 'driver' => env('DB_CONNECTION_PGSQL'), 'host' => env('DB_HOST_PGSQL'), 'port' => env('DB_PORT_PGSQL'), 'database' => env('DB_DATABASE_PGSQL'), 'username' => env('DB_USERNAME_PGSQL'), 'password' => env('DB_PASSWORD_PGSQL'), ],
沒有 .env
#app/config/database.php
return array( 'default' => 'mysql', 'connections' => array( # Primary/Default database connection 'mysql' => array( 'driver' => 'mysql', 'host' => '127.0.0.1', 'database' => 'mysql_database', 'username' => 'root', 'password' => 'secret' 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ), # Secondary database connection 'pgsql' => [ 'driver' => 'pgsql', 'host' => 'localhost', 'port' => '5432', 'database' => 'pgsql_database', 'username' => 'root', 'password' => 'secret', 'charset' => 'utf8', 'prefix' => '', 'schema' => 'public', ] ), );
執行connection()方法來指定要使用的連線。
connection()
Schema::connection('pgsql')->create('some_table', function($table) { $table->increments('id'): });
或者,在頂部定義一個連接。
protected $connection = 'pgsql';
$users = DB::connection('pgsql')->select(...);
(在 Laravel >= 5.0(或更高版本))
在模型中設定$connection變數
$connection
class ModelName extends Model { // extend changed protected $connection = 'pgsql'; }
(在 Laravel
class SomeModel extends Eloquent { protected $connection = 'pgsql'; }
DB::transaction(function () { DB::connection('mysql')->table('users')->update(['name' => 'John']); DB::connection('pgsql')->table('orders')->update(['status' => 'shipped']); });
或
DB::connection('mysql')->beginTransaction(); try { DB::connection('mysql')->table('users')->update(['name' => 'John']); DB::connection('pgsql')->beginTransaction(); DB::connection('pgsql')->table('orders')->update(['status' => 'shipped']); DB::connection('pgsql')->commit(); DB::connection('mysql')->commit(); } catch (\Exception $e) { DB::connection('mysql')->rollBack(); DB::connection('pgsql')->rollBack(); throw $e; }
您也可以透過 setConnection 方法或 on 靜態方法在執行階段定義連線:
setConnection
on
class SomeController extends BaseController { public function someMethod() { $someModel = new SomeModel; $someModel->setConnection('pgsql'); // non-static method $something = $someModel->find(1); $something = SomeModel::on('pgsql')->find(1); // static method return $something; } }
測試版本(已更新)
在 Laravel 5.1 中,您指定連線:
默認,Laravel 使用預設連線。很簡單,不是嗎?
在此處閱讀更多:http://laravel.com/docs/5.1/database#訪問連接
來自 Laravel 文件:您可以存取每個連線使用多個連線時,透過
DB
外觀上的連線方法。傳遞給連接方法的名稱應與config/database.php
設定檔中列出的連接之一相對應:定義連線
使用
#.env
>= 5.0 (或更高)使用
config/database.php
沒有
.env
#app/config/database.php
架構/遷移
執行
connection()
方法來指定要使用的連線。或者,在頂部定義一個連接。
查詢產生器
型號
(在 Laravel >= 5.0(或更高版本))
在模型中設定
$connection
變數雄辯
(在 Laravel
在模型中設定
$connection
變數交易模式
或
您也可以透過
setConnection
方法或on
靜態方法在執行階段定義連線:測試版本(已更新)