Heim >Datenbank >MySQL-Tutorial >关于dbv的runselectedrevisions没有反应

关于dbv的runselectedrevisions没有反应

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:02:551272Durchsuche

当revisions下的SQL语句有异常的时候,比如删除不存在的列,前台没有反应。 其实是有反应的,只不过返回来的数据不是JSON数据,不能被前端解析,修改pdo.php文件的public function query($sql) public function query($sql) { return $this-_connection-quer

当revisions下的SQL语句有异常的时候,比如删除不存在的列,前台没有反应。 其实是有反应的,只不过返回来的数据不是JSON数据,不能被前端解析,修改pdo.php文件的public function query($sql)

public function query($sql)
{
return $this->_connection->query($sql);
}

修改为:
public function query($sql)
{
try{
return $this->_connection->query($sql);
}
catch(Exception $e) {
throw new DBV_Exception($e->getMessage(), (int)$e->getCode());
}
}

这个bug耗了1整晚的时间!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn