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

Imagine that I have 100 SELECT queries that differ by one input. A PreparedStatement can be used for the value.

All the documentation I see on the Web is for batch insert/update/delete. I have never seen batches used for select statements.

Can this be done? If so, please help me when the below sample code.

I suppose this can be done using an "IN" clause, but I would prefer to use batched select statements.

Sample code:

public void run(Connection db_conn, List value_list) {
    String sql = "SELECT * FROM DATA_TABLE WHERE ATTR = ?";
    PreparedStatement pstmt = db_conn.prepareStatement(sql);
    for (String value: value_list) {
        pstmt.clearParameters();
        pstmt.setObject(1, value);
        pstmt.addBatch();
    }
    // What do I call here?
    int[] result_array = pstmt.executeBatch()
    while (pstmt.getMoreResults()) {
        ResultSet result_set = pstmt.getResultSet();
        // do work here
    }
}

I suppose this may also be driver-dependent behaviour. I am writing queries against IBM AS/400 DB2 database using their JDBC driver.

share|improve this question

3 Answers

up vote 10 down vote accepted

See here:

"This list may contain statements for updating, inserting, or deleting a row; and it may also contain DDL statements such as CREATE TABLE and DROP TABLE. It cannot, however, contain a statement that would produce a ResultSet object, such as a SELECT statement. In other words, the list can contain only statements that produce an update count. ... The list, which is associated with a Statement object at its creation, is initially empty. You can add SQL commands to this list with the method addBatch."

share|improve this answer
1  
+1 for linking to the tutorial – a_horse_with_no_name Oct 26 '11 at 9:05
@a_horse_with_no_name I would rather have linked to reference material actually, there's nothing authoritative about a tutorial, and some of them contain amazing blunders. But I couldn't find a decent statement of the issue in the 45 seconds I allocated to this task. – EJP Oct 26 '11 at 22:37

AddBatch() is for 'delete'/'insert'/' update' statements, and not 'select' statements.

share|improve this answer

This old one from JavaRanch offers a few options:

Batching Select Statements in JDBC

share|improve this answer

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.