首頁 >後端開發 >php教程 >如何在 Laravel 管理多個資料庫連線?

如何在 Laravel 管理多個資料庫連線?

Patricia Arquette
Patricia Arquette原創
2024-12-23 02:45:30180瀏覽

How Can I Manage Multiple Database Connections in Laravel?

使用Laravel 連接多個資料庫

為了管理Laravel 系統中的多個資料庫,Laravel 透過其資料庫外觀提供了通用的解決方案。

使用資料庫連線

當使用多個資料庫連線時,您可以使用資料庫外觀上的連線方法存取每個連線。提供給連接方法的名稱與config/database.php 設定檔中定義的名稱一致:

$users = DB::connection('foo')->select(...);

連線定義

資料庫連線可以是使用.env檔案或config/database.php 檔案進行設定:

使用.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'),
],

架構和遷移

要指定用於架構和遷移的連接,請使用connection()方法:

Schema::connection('pgsql')->create('some_table', function ($table) {
    $table->increments('id');
});

或者,您可以在類別的頂部定義連接:

protected $connection = 'pgsql';

查詢產生器

查詢產生器
$users = DB::connection('pgsql')->select(...);

利用查詢產生器進行特定連接:

模型
class ModelName extends Model {
    protected $connection = 'pgsql';
}

在Laravel 5.0 及更高版本中,您可以在模型中設定$connection 變數:

雄辯
class SomeModel extends Eloquent {
    protected $connection = 'pgsql';
}

在Laravel 中4.0 及以下版本,您可以在模型中定義$connection 變量:

事務模式
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;
}

運行時連接管理
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;
    }
}

也可以在運行時使用 setConnection 方法或 on static方法建立連接:

注意何時與不同資料庫中的表建立關係時,由於基於資料庫和設定的潛在警告,因此務必謹慎行事。僱用。

以上是如何在 Laravel 管理多個資料庫連線?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn