Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to do select * based on a list of input ids, what's the best way of batch select? here's what I have

StringBuilder inClause = new StringBuilder();
boolean firstValue = true;
for (int i=0; i < batchSize; i++) {
  inClause.append('?');
  if ( firstValue ) {
    firstValue = false;
  } else {
    inClause.append(',');
  }
}
PreparedStatement stmt = conn.prepareStatement(
    "select id, name from users where id in (" + inClause.toString() + ')');


for (int i=0; i < batchSize; i++) {
  stmt.setInt(i);  // or whatever values you are trying to query by
}
share|improve this question

1 Answer

up vote 2 down vote accepted

It looks pretty fine to me. Just spotted a logical bug there in this block of code,

boolean firstValue = true;
for (int i=0; i < batchSize; i++) {
  inClause.append('?');
  if ( firstValue ) {
    firstValue = false;
  } else {
    inClause.append(',');
  }
}

It will not append a , after the first element. And there would be a , after the last. So, you need not care about that , here. Just do it this way

for (int i=0; i < batchSize; i++) {
  inClause.append('?, ');
}

Then chop last two characters like this,

PreparedStatement stmt = conn.prepareStatement(
    "select id, name from users where id in (" + 
    inClause.substring(0, inClause.length()-2) + ')');
share|improve this answer
is this the fastest way possible? – user775187 Jun 9 '11 at 3:53
@user775187: If the id is unique, and you need to query records based on several ids -- provided there is no other option, then IN(...) is the way. Hence, you have to build your query using this or similar technique. – Adeel Ansari Jun 9 '11 at 4:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.