Yii2 Create Database Connection

后端 未结 2 1521
温柔的废话
温柔的废话 2021-01-21 18:14

I want to create a database connection programmatically without using the config file. I have a form wherein the user enters the database details like the hostname,

2条回答
  •  日久生厌
    2021-01-21 18:26

    I realised my mistake. When using Yii::$app->set() for setting up the db connection, you have to even manually open the connection using Yii::$app->db->open(). Yii doesn't open up the connection for you.

提交回复
热议问题