PHP中的PDO詳解

PDO 是一個「數據庫訪問抽象層」,做用是統一各類數據庫(MySQL、MSSQL、Oracle、DB二、PostgreSQL……)的訪問接口,能輕鬆的在不一樣的數據庫之間完成切換,使得數據庫間的移植容易實現。 php

PDO經常使用方法:
PDO::query()主要用於有記錄結果返回的操做(PDOStatement),特別是select操做。
PDO::exec()主要是針對沒有結果集合返回的操做。如insert,update等操做。返回影響行數。
PDO::lastInsertId()返回上次插入操做最後一條ID,但要注意:若是用insert into tb(col1,col2) values(v1,v2),(v11,v22)..的方式一次插入多條記錄,lastinsertid()返回的只是第一條(v1,v2)插入時的ID,而不是最後一條記錄插入的記錄ID。
PDOStatement::fetch()是用來獲取一條記錄。配合while來遍歷。
PDOStatement::fetchAll()是獲取全部記錄集到一箇中。
PDOStatement::fetchcolumn([int column_indexnum])用於直接訪問列,參數column_indexnum是該列在行中的從0開始索引值,可是,這個方法一次只能取得同一行的一列,只要執行一次,就跳到下一行。所以,用於直接訪問某一列時較好用,但要遍歷多列就用不上。
PDOStatement::rowcount()適用於當用query(「select …」)方法時,獲取記錄的條數。也能夠用於預處理中。$stmt->rowcount();
PDOStatement::columncount()適用於當用query(「select …」)方法時,獲取記錄的列數。 前端

註解:
一、選fetch仍是fetchall?
小記錄集時,用fetchall效率高,減小從數據庫檢索次數,但對於大結果集,用fetchall則給系統帶來很大負擔。數據庫要向WEB前端傳輸量太大反而效率低。
二、fetch()或fetchall()有幾個參數:
mixed pdostatement::fetch([int fetch_style [,int cursor_orientation [,int cursor_offset]]])
array pdostatement::fetchAll(int fetch_style) mysql

fetch_style參數:
■$row=$rs->fetchAll(PDO::FETCH_BOTH); FETCH_BOTH是默認的,可省,返回關聯和索引。
■$row=$rs->fetchAll(PDO::FETCH_ASSOC); FETCH_ASSOC參數決定返回的只有關聯數組。
■$row=$rs->fetchAll(PDO::FETCH_NUM); 返回索引數組
■$row=$rs->fetchAll(PDO::FETCH_OBJ); 若是fetch()則返回對象,若是是fetchall(),返回由對象組成的二維數組 sql

實例: 數據庫

<?php 
try{ 
$dbh=newPDO('mysql:host=localhost;dbname=test',$user,$pass); 
$dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); 
$dbh->exec("SET CHARACTER SET utf8"); 
/*添加*/ 
$sql = "INSERT INTO `user` (`login` ,`password`)VALUES (:login, :password)"; 
$stmt = $dbh->prepare($sql); 
$stmt->execute(array(':login'=>'king',':password'=>'123')); 
echo $dbh->lastinsertid(); 
/*修改*/ 
$sql = "UPDATE `user` SET `password`=:password WHERE `user_id`=:userId"; 
$stmt = $dbh->prepare($sql); 
$stmt->execute(array(':userId'=>'7', ':password'=>'4607e782c4d86fd5364d7e4508bb10d9')); 
echo $stmt->rowCount(); 
/*刪除*/ 
$sql = "DELETE FROM `user` WHERE `login` LIKE 'ke'"; 
$stmt = $dbh->prepare($sql); 
$stmt->execute(); 
echo $stmt->rowCount(); 
/*查詢*/ 
$login = 'kevi'; 
$sql = "SELECT * FROM `user` WHERE `login` LIKE :login"; 
$stmt = $dbh->prepare($sql); 
$stmt->execute(array(':login'=>$login)); 
while($row = $stmt->fetch(PDO::FETCH_ASSOC)){ 
print_r($row); 
} 
print_r( $stmt->fetchAll(PDO::FETCH_ASSOC)); 
$dbh=null; //斷開鏈接 
}catch(PDOException$e){ 
print"Error!:".$e->getMessage()."<br/>"; 
die(); 
} 
?>

 

事務: 數組

<?php 
try { 
$dbh = new PDO('mysql:host=localhost;dbname=test', 'root', ''); 
$dbh->query('set names utf8;'); 
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 
$dbh->beginTransaction(); 
$dbh->exec("Insert INTO `test`.`table` (`name` ,`age`)VALUES ('mick', 22);"); 
$dbh->exec("Insert INTO `test`.`table` (`name` ,`age`)VALUES ('lily', 29);"); 
$dbh->exec("Insert INTO `test`.`table` (`name` ,`age`)VALUES ('susan', 21);"); 
$dbh->commit(); 
} catch (Exception $e) { 
$dbh->rollBack(); 
echo "Failed: " . $e->getMessage(); 
} 
?> 

 排除錯誤: fetch

$sth = $dbh->prepare('select * from db where SN = :SN'); 
$sth->bindParam(':SN',$value[SN]); 
$sth->execute(); 
if ($sth->errorCode()) 
{ 
echo "有錯誤!有錯誤!"; 
print_r($sth->errorInfo()); 
}
相關文章
相關標籤/搜索