PHP#39;s PDO prepared statement: am I able to use one placeholder multiple times?(PHP 的 PDO 准备语句:我可以多次使用一个占位符吗?)
问题描述
我想执行以下查询:
选择*,(SELECT COUNT(*) FROM `tab2` WHERE `parent` = :id) AS `sum`从`tab1`哪里`id` = :id
如您所见,:id 占位符在查询中出现了两次.因此,如果我尝试使用以下命令执行此语句:
$q->execute(['id'=>$row_id]);
我收到错误:
致命错误:未捕获的异常PDOException",消息为SQLSTATE[HY093]:参数编号无效
所以我必须重写准备好的查询并使用 :id1 和 :id2 占位符执行数组,这对我来说看起来有点愚蠢.
这是在准备好的语句的多个地方使用一个占位符的唯一方法吗?
PDO::prepare 表示
<块引用>[y]你不能在准备好的语句中多次使用同名的命名参数标记,除非模拟模式打开.
由于通常最好关闭仿真模式(因此数据库执行准备好的语句),因此您必须使用 id_0
、id_1
等>
I'd like to perform the following query:
SELECT *, (SELECT COUNT(*) FROM `tab2` WHERE `parent` = :id) AS `sum` FROM `tab1` WHERE `id` = :id
As you can see :id
placeholder appeared twice in the query. So if I'd try to execute this statement with:
$q->execute(['id'=>$row_id]);
I'm receiving the error:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY093]: Invalid parameter number
So I have to rewrite the prepared query and execute array with :id1 and :id2 placeholders which looks a bit stupid for me.
Is it the only way to use one placeholder in several places of the prepared statement?
PDO::prepare states that
[y]ou cannot use a named parameter marker of the same name more than once in a prepared statement, unless emulation mode is on.
Since it's generally better to leave emulation mode off (so the database does the prepared statement), you'll have to use id_0
, id_1
, etc.
这篇关于PHP 的 PDO 准备语句:我可以多次使用一个占位符吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 的 PDO 准备语句:我可以多次使用一个占位符吗?
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01