mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix query errors not being shown in debug info
This commit is contained in:
parent
772d26ee2f
commit
1c0b738b44
1 changed files with 1 additions and 1 deletions
|
|
@ -1173,7 +1173,7 @@ class DB
|
||||||
'query_id' => $this->_query_id,
|
'query_id' => $this->_query_id,
|
||||||
'connection' => $this->_type,
|
'connection' => $this->_type,
|
||||||
'elapsed_time' => sprintf('%0.5f', $elapsed_time),
|
'elapsed_time' => sprintf('%0.5f', $elapsed_time),
|
||||||
'result' => 'success',
|
'result' => $this->_errno ? 'error' : 'success',
|
||||||
'errno' => $this->_errno,
|
'errno' => $this->_errno,
|
||||||
'errstr' => $this->_errstr,
|
'errstr' => $this->_errstr,
|
||||||
'called_file' => null,
|
'called_file' => null,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue