gpt4 book ai didi

php - 尝试将准备好的语句与 ILIKE 运算符一起使用

转载 作者:行者123 更新时间:2023-11-29 13:04:53 25 4
gpt4 key购买 nike

因此,我尝试通过比较旧标题并将其更新为新标题来使用用户输入的新事件标题更新日历。这是代码

$result = pg_prepare($conn, "event_update", "UPDATE calendar.calendar SET title = $1 WHERE title ILIKE $2");

$result = pg_execute($conn, "event_update", array($titleNew,$titleOld);

这表示我没有为准备好的语句返回正确数量的参数。

$titleOld 现在拥有 'title' 但没有任何改变,这在 postgres 中有效,只是不在 php 中。

最佳答案

您错过了字符串中参数的\字符。

$result = pg_prepare($conn, "event_update", "UPDATE calendar.calendar SET title = \$1 WHERE title ILIKE \$2");

关于php - 尝试将准备好的语句与 ILIKE 运算符一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16901190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com