“?”在哪里? play2 异常中 sql 的占位符
我们可以在play2的anorm中编写如下sql:
def findById(id: String): Option[Link] = DB.withConnection {implicit connection =>
SQL("select * from links where id={id}").on('id -> id).as(simple.singleOpt)
}
它使用{xxx}
格式作为占位符,并指定一个map'id->id
。是否有像我们在 play1 中那样使用 ?
作为占位符?
我希望我可以这样写:
def findById(id:String): Option[Link] = DB.withConnection {implicit connection =>
SQL("select * from links where id=?").on(id).as(simple.singleOpt)
}
这种格式有时非常有用。
We can write sqls like following in play2's anorm:
def findById(id: String): Option[Link] = DB.withConnection {implicit connection =>
SQL("select * from links where id={id}").on('id -> id).as(simple.singleOpt)
}
It uses {xxx}
format as the placeholder, and the specify a map 'id->id
. Is there anyway to use ?
as the placeholder as we do in play1?
I hope I can write it like:
def findById(id:String): Option[Link] = DB.withConnection {implicit connection =>
SQL("select * from links where id=?").on(id).as(simple.singleOpt)
}
This format is very useful sometimes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,目前 Anorm 使用 Scala 符号进行映射,并且不能使用“?”。
将来这可能会改变,但现在不可能。
No, currently Anorm uses the Scala symbols for the mapping and you can't use '?'.
This may change in the future, but it is not possible right now.