Invalid parameter number: number of bound variables does not match number of tokens in Doctrine(无效的参数号:绑定变量的数量与 Doctrine 中的标记数量不匹配)
问题描述
使用 Doctrine 2 我想获取一些用户是另一个用户的联系人.user
表包含这些用户之间的映射.函数中的查询会返回如下错误:
Using Doctrine 2 I want to get some users that are contacts of another user. The table user
contains the mapping between those users. The query in the function will return the following error:
参数号无效:绑定变量的数量与标记的数量不匹配.
Invalid parameter number: number of bound variables does not match number of tokens.
但据我所知,$str
设置为b",$ownerId
设置为2",两者均由 setParameters代码>函数.
However to my best understanding $str
is set to "b" and $ownerId
is set to "2" and both are assigned by the setParameters
function.
protected function getContactBySubstring($str, $ownerId) {
echo $str;
echo $ownerId;
$em = $this->getDoctrine()->getEntityManager();
$qb = $em->createQueryBuilder();
$qb->add('select', 'u')
->add('from', 'PastonVerBundleEntityUser u, PastonVerBundleEntityContact c')
->add('where', "c.owner = ?1 AND c.contact = u.id AND u.username LIKE '?2'")
->add('orderBy', 'u.firstname ASC, u.lastname ASC')
->setParameters(array (1=> $ownerId, 2=> '%'.$str.'%'));
echo $qb->getDql();
$query = $qb->getQuery();
$users = $query->getResult();
foreach($users as $user)
echo $user->getUsername();
exit;
//return $contacts;
}
推荐答案
不要用引号将查询文本中的任何参数括起来!
Don't surround any of the parameters in your query text with quotes!
->add('where', "c.owner = ?1 AND c.contact = u.id AND u.username LIKE '?2'")
应该是
->add('where', "c.owner = ?1 AND c.contact = u.id AND u.username LIKE ?2")
这篇关于无效的参数号:绑定变量的数量与 Doctrine 中的标记数量不匹配的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无效的参数号:绑定变量的数量与 Doctrine 中的标记数量不匹配
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01