为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的 SQL 占位符没有被替换(使用 Go pq)?

为什么我的 SQL 占位符没有被替换(使用 Go pq)?

Go
摇曳的蔷薇 2021-06-21 15:41:11
根据文档,我正在这样做var thingname string = "asdf";var id interr = database.QueryRow("SELECT id from things where thing = ?", thingname).Scan(&id)但 Postgres 说ERROR:  syntax error at end of input at character 41STATEMENT:  SELECT id from things where thing = ?我看不出我做的与演示代码有很大不同。我正在使用pq。
查看完整描述

2 回答

?
拉丁的传说

TA贡献1789条经验 获得超8个赞

确切的语法取决于数据库。

err = database.QueryRow("SELECT id from things where thing = $1", thingname).Scan(&id)


查看完整回答
反对 回复 2021-06-28
?
红颜莎娜

TA贡献1842条经验 获得超12个赞

试试这个使用$1而不是?:-

err = database.QueryRow("SELECT id from things where thing = $1", thingname).Scan(&id)


查看完整回答
反对 回复 2021-06-28
  • 2 回答
  • 0 关注
  • 234 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信