PDO查詢資料簡單示例

2022-06-28 15:12:11 字數 1391 閱讀 4543

$atime=5;

$pdo=new pdo('mysql:host=127.0.0.1;dbname=test1','root','root');

$stmt=$pdo->prepare('select * from test where atime>:atime');

$stmt->bindparam(':atime',$atime

);$stmt->execute();

$stmt=$pdo->prepare('select * from test where atime>:atime');

$stmt->bindparam(':atime',$atime

);$stmt->execute(); //

查詢單條資料

$a=$stmt->fetch(pdo::fetch_assoc);//

關聯陣列print_r($a);

$a=$stmt->fetch(pdo::fetch_lazy);//

只能用於單條查詢

//pdorow object

//(// [querystring] => select * from test where atime>:atime

// [id] => 7

// [aname] => aa

// [atime] => 23

//)

//查詢多條資料

$a=$stmt->fetchall(pdo::fetch_assoc);//

關聯陣列

//索引鍵

$a=$stmt->fetchall(pdo::fetch_num);//

索引鍵//既有索引鍵也有關聯鍵

$a=$stmt->fetchall(pdo::fetch_both);//

既有索引鍵也有關聯鍵

array//(

// [0] => array

// (

// [id] => 7

// [0] => 7

// [aname] => aa

//[1] => aa

//[atime] => 23

// [2] => 23

// )

//// [1] => array

//(// [id] => 8

// [0] => 8

// [aname] => aa

//[1] => aa

//[atime] => 23

// [2] => 23

// )

**來自:

PDO簡單的學習

pdo連線資料庫 pdo new pdo dsn,username,password dsn資料庫的基本連線資訊 資料庫的型別,資料庫的位址,連線的資料庫名稱 如 dsn mysql host 127.0.0.1,dbname test 執行基本的資料庫操作函式一 exec exec是pdo物件的乙...

python實現資料庫查詢的簡單示例

coding utf 8 author gogocaptain import sys import mysqldb def main f1 open md5.txt r 開啟需要查詢的md5 f2 open result.txt w 查詢結果寫到result裡 conn mysqldb.connec...

mysql資料庫查詢pdo的用法

最早的php對mysql資料庫查詢是mysql和mysqli方法,後來php的新版本進一步封住了該方法,於是又pdo,拋開php框架,使用pdo查詢資料,使用也是相當簡便 1 2ini set max execution time 3600 3 pdo new pdo mysql host loca...