Bugfix: PDO shell plugin

* Fix broken .set command
* Prevent crash if database not available
This commit is contained in:
Chris 2021-12-18 14:37:14 +01:00
parent 8f7e8013ab
commit 94240a06f2
1 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ class PdoShell {
$this->output->writeln("<error>No such option {$varname}</>");
return;
}
$this->options[$varname] = $args;
$this->options[$varname] = $value;
} else {
$this->output->writeln(var_export($this->options[$varname]??null,true));
}
@ -291,9 +291,9 @@ class PdoShell {
$this->output->writeln("<error>No database resource selected</>");
return;
}
$pdo = $this->db->getPDO();
try {
$pdo = $this->db->getPDO();
$stmt = $pdo->prepare($query);
$stmt->execute($params);
$res = $stmt->fetchAll(\PDO::FETCH_ASSOC);