Laravel 4 - Connect to other database

后端 未结 6 2210
暖寄归人
暖寄归人 2020-12-08 01:25

I want to connect to another database sometimes.

I created a config.php with the database connection data.

But how can i tell laravel to connect to this data

6条回答
  •  [愿得一人]
    2020-12-08 01:48

    Edit bootstrap/start.php file and add your machine name (open terminal: hostname).

    Add your machine to $env,

    $env = $app->detectEnvironment(array(
        'mymachine' => array('mymachine.local'),
    ));
    
    1. Create a new path at 'app/config/mymachine'
    2. Add a copy of database.php with new config params.

提交回复
热议问题