executeBatch Method (SQLServerPreparedStatement)

Submits a batch of commands to the database to be run. If all commands run successfully, returns an array of update counts.

Syntax

public int[] executeBatch()

Return Value

An array of ints that contains the update counts.

Exceptions

SQLServerException

java.sql.BatchUpdateException

Remarks

This executeBatch method is specified by the executeBatch method in the java.sql.Statement interface.

The SQL Server JDBC Driver 3.0 is compliant with the JDBC 4.0 recommendation that a call to the CallableStatement.executeBatch method (inherited from PreparedStatement) will throw a BatchUpdateException if the stored procedure accepts OUT or INOUT parameters or returns something other than an update count.

This method overrides SQLServerStatement.executeBatch.

See Also

Reference

SQLServerPreparedStatement Class

Concepts

SQLServerPreparedStatement Members