PHP之PDO-prepare

WBOY
Libérer: 2016-06-20 12:52:50
original
1071 Les gens l'ont consulté

当同一个SQL多次查询(执行)时,只是每次的查询条件(数据)不一样,那么,使用prepare就对了.

它可大大减少查询(执行)时间,服务器资源消耗..


原型:

PDOStatement PDO::prepare(string query [, array driver_options])


占位符:

1,有名占位符(:named parameters)

2,问号占位符(?)

如:

INSERT INTO products SET sku = :sku, name = :name;INSERT INTO products SET sku = ?, name = ?;
Copier après la connexion


绑定一个参数到指定的变量名:

bool PDOStatement::bindParam ( mixed $parameter , mixed &$variable [, int $data_type = PDO::PARAM_STR [, int $length [, mixed $driver_options ]]] )//命名占位符$stmt->bindParam(':sku', $sku);$stmt->bindParam(':title', $title);//问号占位符$stmt->bindParam(1, $sku);$stmt->bindParam(2, $title);
Copier après la connexion


执行步骤:

$dbh->prepare(); //准备$dbh->bindParam(); //绑定参数$dbh->execute(); //执行
Copier après la connexion


查询返回字段个数:

integer PDOStatement::columnCount()
Copier après la connexion

从结果集中返回下一行数据:

mixed PDOStatement::fetch([int fetch_style [, int cursor_orientation [, int cursor_offset]]])
Copier après la connexion

常用fetch_style:

PDO::FETCH_ASSOC:返回一个索引为结果集列名的数组

PDO::FETCH_BOTH(默认):返回一个索引为结果集列名和以0开始的列号的数组

PDO::FETCH_NUM:返回一个索引为以0开始的结果集列号的数组

PDO::FETCH_OBJ:返回一个属性名对应结果集列名的匿名对象

PDO::FETCH_BOUND:返回 TRUE ,并分配结果集中的列值给 PDOStatement::bindColumn()方法绑定PHP 变量。


返回一个包含结果集中所有行的数组

array PDOStatement::fetchAll([int fetch_style])
Copier après la connexion


从结果集中的下一行返回单独的一列

string PDOStatement::fetchColumn([int column_number])
Copier après la connexion

绑定列名:

boolean PDOStatement::bindColumn(mixed column, mixed &param [, int type [, int maxlen [, mixed driver_options]]])
Copier après la connexion


操作事务:

开始:

boolean PDO::beginTransaction();
Copier après la connexion

提交:

boolean PDO::commit();
Copier après la connexion

回滚:

boolean PDO::commit()
Copier après la connexion



Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!