我遇到了这个烦人的错误,尽管我知道为什么会遇到它,但我终其一生都无法找到解决方案。
if ($limit) {
$sth->bindValue(':page', $page - 1, PDO::PARAM_INT);
$sth->bindValue(':entries_per_page', $page * $entries_per_page, PDO::PARAM_INT);
}
$sth->execute($criteria);
查询包含占位符 ( :placeholder
)。但是要添加那些 LIMIT 占位符,我需要使用手动方法 ( bindValue
),否则引擎会将它们变成字符串。
我没有收到 Invalid number of parameters 错误,因此所有占位符都已正确绑定(我假设)。
询问:
SELECT `articles`.*, `regional_municipalities`.`name` AS `regional_municipality_name`,
`_atc_codes`.`code` AS `atc_code`, `_atc_codes`.`name` AS `substance`
FROM `articles`
LEFT JOIN `_atc_codes`
ON (`_atc_codes`.`id` = `articles`.`atc_code`)
JOIN `regional_municipalities`
ON (`regional_municipalities`.`id` = `articles`.`regional_municipality`)
WHERE TRUE AND `articles`.`strength` = :strength
GROUP BY `articles`.`id`
ORDER BY `articles`.`id`
LIMIT :page, :entries_per_page
所有占位符值都位于 $criteria 中,除了最后两个 LIMIT,我手动绑定了bindValue()
.