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

IN子句中参数列表的PreparedStatement

IN子句中参数列表的PreparedStatement

潇潇雨雨 2019-07-12 10:33:28
IN子句中参数列表的PreparedStatement如何在执行查询时在JDBC中的prearedStatement中为in子句设置值。例子:connection.prepareStatement("Select * from test where field in (?)");如果这个in-子句可以保存多个值,我如何才能做到这一点。有时我事先知道参数列表,有时我不知道。如何处理这个案子?
查看完整描述

3 回答

?
www说

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

我所做的就是添加一个“?”每一种可能的价值。

例如:

List possibleValues = ... StringBuilder builder = new StringBuilder();for( int i = 0 ; i < possibleValue.size(); i++ ) {
    builder.append("?,");}String stmt = "select * from test where field in (" 
               + builder.deleteCharAt( builder.length() -1 ).toString() + ")";PreparedStatement pstmt = ...

然后高高兴兴地设置帕林

int index = 1;for( Object o : possibleValue ) {
   pstmt.setObject(  index++, o ); // or whatever it applies }


查看完整回答
反对 回复 2019-07-12
  • 3 回答
  • 0 关注
  • 1301 浏览

添加回答

举报

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