改名
This commit is contained in:
@@ -129,7 +129,6 @@ class Command extends Component
|
|||||||
} catch (\Throwable $exception) {
|
} catch (\Throwable $exception) {
|
||||||
$result = $this->addError($this->sql . '. error: ' . $exception->getMessage(), 'mysql');
|
$result = $this->addError($this->sql . '. error: ' . $exception->getMessage(), 'mysql');
|
||||||
} finally {
|
} finally {
|
||||||
var_dump($result);
|
|
||||||
$this->db->release();
|
$this->db->release();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -251,9 +251,11 @@ class PDO implements StopHeartbeatCheck
|
|||||||
$this->_last = time();
|
$this->_last = time();
|
||||||
$pdo = $this->_pdo();
|
$pdo = $this->_pdo();
|
||||||
if (!(($prepare = $pdo->prepare($sql)) instanceof PDOStatement)) {
|
if (!(($prepare = $pdo->prepare($sql)) instanceof PDOStatement)) {
|
||||||
|
var_dump($prepare->errorInfo());
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
if ($prepare->execute($params) === false) {
|
if ($prepare->execute($params) === false) {
|
||||||
|
var_dump($prepare->errorInfo());
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
$result = (int)$pdo->lastInsertId();
|
$result = (int)$pdo->lastInsertId();
|
||||||
|
|||||||
Reference in New Issue
Block a user