我想在不使用配置文件的情况下以编程方式创建数据库连接。我有一个表单,其中用户输入数据库详细信息,如hostname
,username
,password
和database name
。在这些细节的基础上,建立了一个新的测试连接,如果它通过,它应该生成必要的文件。
这就是我的尝试:
// Create Test DB Connection
Yii::$app->set('id', [
'class' => 'yii\db\Connection',
'dsn' => $dsn,
'username' => $form->username,
'password' => $form->password,
'charset' => 'utf8'
]);
try {
// Check DB Connection
if (Yii::$app->db->getIsActive()) {
// Write Config
$config['components']['db']['class'] = 'yii\db\Connection';
$config['components']['db']['dsn'] = $dsn;
$config['components']['db']['username'] = $username;
$config['components']['db']['password'] = $password;
$config['components']['db']['charset'] = 'utf8';
Configuration::setConfig($config);
$success = TRUE;
return $this->redirect(['init']);
}else{
$errorMsg = 'Incorrect Configurations';
}
} catch (Exception $e) {
$errorMsg = $e->getMessage();
}
我一次又一次地测试过,即使配置正确,也会出错。 所有的帮助表示赞赏。提前谢谢!
答案 0 :(得分:3)
您可以通过以下方式定义新连接:
$db = new yii\db\Connection([
'dsn' => 'mysql:host=localhost;dbname=example',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
]);
$db->open();
建立数据库连接后,可以执行如下所示的SQL语句,例如:
$command = $db->createCommand('SELECT * FROM post');
$posts = $command->queryAll();
// or
$command = $connection->createCommand('UPDATE post SET status=1');
$command->execute();
你可以看一下这个文档和指南
答案 1 :(得分:2)
我意识到自己的错误。使用Yii::$app->set()
设置db
连接时,您甚至必须使用open
手动Yii::$app->db->open()
连接。 Yii没有为你打开连接。