這篇文章主要介紹了php使用PDO下exec()函數查詢執行後受影響行數的方法,結合實例形式分析了php在使用pdo進行增刪改操作時exec()函數查詢操作執行後受影響行數的相關實作技巧與注意事項,需要的朋友可以參考下
本文實例講述了php使用PDO下exec()函數查詢執行後受影響行數的方法。分享給大家供大家參考,如下:
exec()
方法傳回執行後受影響的行數。
語法:int PDO::exec(string statement)
提示:
參數statement是要執行的SQL語句。 此方法傳回執行查詢時受影響的行數,通常用於insert,delete和update語句中。但不能用於select查詢,傳回查詢結果。
為了驗證這個提示,下面我分別對insert,delete,update,select 查詢進行測試;
INSERT
##
try{ $conn=new PDO("mysql:host=$servername;dbname=$dbname", $username,$password); $conn->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $sql="INSERT INTO `hello`(`firstname`,`lastname`,`email`)values('ye','xianming','1150416034@qq.com'), ('xiao','hua','xiaohua@163.com')"; $conn->exec($sql); echo "Insert record success"; }catch(PDOException $e){ echo "Error:".$e->getMessage(); }#Delete
try{ $conn=new PDO("mysql:host=$servername;dbname=$dbname",$username,$password); $conn->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $sql="delete from hello where id=61"; $conn->exec($sql); echo "delete record success"; }catch(PDOException $e){ echo "Error".$e->getMessage(); }Update
#
try{ $conn=new PDO("mysql:host=$servername;dbname=$dbname",$username,$password); $conn->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $sql="UPDATE hello SET firstname='xiao',lastname='ming' WHERE id='62'"; $conn->exec($sql); echo "update record success"; }catch(PDOException $e){ echo "Error".$e->getMessage(); }Select
try{ $conn=new PDO("mysql:host=$servername;dbname=$dbname",$username,$password); $conn->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $sql="select * from hello"; $query=$conn->exec($sql); for($i=0;$i<count($query);$i++){ print_r($query); } echo "select record success"; }catch(PDOException $e){ echo "Error".$e->getMessage(); }以上就是本文的全部內容,希望對大家的學習有幫助。
curl_exec函數介紹與使用方法詳解
php四個函數shell_exec, exec, passthru, system分別的使用場景
#
以上是php使用PDO下exec()函數實作查詢執行後受影響行數的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!