設定
illuminate/databaseのデータベースおよびサポートされているバージョンは次のとおりです:
- MySQL 5.6+
- PostgreSQL 9.4+
- SQLite 3.8.8+
- SQL Server 2017+
データベースの設定ファイルの場所は config/database.php
です。
return [
// デフォルトのデータベース
'default' => 'mysql',
// 各種のデータベース設定
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'unix_socket' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
'sqlite' => [
'driver' => 'sqlite',
'database' => '',
'prefix' => '',
],
'pgsql' => [
'driver' => 'pgsql',
'host' => '127.0.0.1',
'port' => 5432,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => 'localhost',
'port' => 1433,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
],
],
];
複数のデータベースの使用
Db::connection('設定名')
を使用して、どのデータベースを使用するかを選択します。ここでの 設定名
は config/database.php
ファイル内の対応する設定の key
です。
たとえば、次のようなデータベース設定があります:
return [
// デフォルトのデータベース
'default' => 'mysql',
// 各種のデータベース設定
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'unix_socket' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
'mysql2' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'webman2',
'username' => 'webman2',
'password' => '',
'unix_socket' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
'pgsql' => [
'driver' => 'pgsql',
'host' => '127.0.0.1',
'port' => 5432,
'database' => 'webman',
'username' => 'webman',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
'sslmode' => 'prefer',
],
];
このようにデータベースを切り替えます。
// デフォルトのデータベースを使用。これは Db::connection('mysql')->table('users')->where('name', 'John')->first(); と同等です。
$users = Db::table('users')->where('name', 'John')->first();
// mysql2 を使用
$users = Db::connection('mysql2')->table('users')->where('name', 'John')->first();
// pgsql を使用
$users = Db::connection('pgsql')->table('users')->where('name', 'John')->first();