我可以要求 JDBCTemplate 扩展列表参数以在 in() 子句中使用吗?
我可以做这样的事情:
select * from mytable m where m.group_id in (?)
... 并传入要扩展为我的参数的参数列表或数组,即:
select * from mytable m where m.group_id in (1,2,3,4)
具体来说,我正在使用 Spring 和 JdbcTemplate/SimpleJdbcTemplate 类。
Can I do something like this:
select * from mytable m where m.group_id in (?)
... and pass in a list or array of arguments to be expanded in to my parameter, ie:
select * from mytable m where m.group_id in (1,2,3,4)
Specifically, I'm using Spring and the JdbcTemplate/SimpleJdbcTemplate classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 NamedParameterJdbcTemplate 来完成此操作。
对于你的样本,它会是这样的:
You can do it by using NamedParameterJdbcTemplate.
With your sample it would go something like:
抱歉,不能这样做。您可以自己编写一个方便的方法来做到这一点,但据我所知,没有像 Hibernate 这样的
setParameterList()
。Sorry, can't do that. You can write yourself a convenience method to do that, but there's no
setParameterList()
like Hibernate, as far as I know.请找到下面的代码
Please find the below code
是的,您可以在 Spring 3 中使用命名参数。
请参阅http: //docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/jdbc.html#jdbc-in-clause
它应该采用任何基元列表并展开该列表。请注意,您的列表不要超过数据库支持的最大大小。 (Oracle 限制为 1000)。像这样的东西应该有效:
Yes you can in Spring 3 using a named parameter.
See http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/jdbc.html#jdbc-in-clause
It should take any list of primitives and expand the list. Just be careful that your list does not go over the max size your DB supports. (Oracle limit is 1000). Something like this should work: