>  기사  >  백엔드 개발  >  php pdo sql语句错误为何没报错误信息

php pdo sql语句错误为何没报错误信息

WBOY
WBOY원래의
2016-06-06 20:29:001451검색

<code>$cdb=new \PDO('mysql:dbname=crawler;host=127.0.0.1;charset=utf8','root','*****');
$cdb->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);

$sql='update jb51_ps_article set is_handle=1 and new_article_id=5 where id=71665';
$state=$cdb->exec($sql);
print_r($cdb->errorInfo());
</code>

这里的update语句的set部分写错了set ishandle=1 and newarticle_id=5

<code>$sql='update jb51_ps_article set is_handle=1 and new_article_id=5 where id=71665';</code>

应该为set ishandle=1,newarticle_id=5

执行后数据表不会更改,但是没有任何错误信息,害得我弄了半天,不知道是怎么回事?

下面是输出信息:
php pdo sql语句错误为何没报错误信息

回复内容:

<code>$cdb=new \PDO('mysql:dbname=crawler;host=127.0.0.1;charset=utf8','root','*****');
$cdb->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);

$sql='update jb51_ps_article set is_handle=1 and new_article_id=5 where id=71665';
$state=$cdb->exec($sql);
print_r($cdb->errorInfo());
</code>

这里的update语句的set部分写错了set ishandle=1 and newarticle_id=5

<code>$sql='update jb51_ps_article set is_handle=1 and new_article_id=5 where id=71665';</code>

应该为set ishandle=1,newarticle_id=5

执行后数据表不会更改,但是没有任何错误信息,害得我弄了半天,不知道是怎么回事?

下面是输出信息:
php pdo sql语句错误为何没报错误信息

创建PDO对象的时候设置一下错误模式

<code>$cdb->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);</code>

然后try/catch一下就可以捕获到错误了

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.