public void testEmptyStatementBatch() throws SQLException {
Statement stmt = createStatement();
// try executing a batch which nothing in it. Should work.
println("Positive Statement: clear the batch and run the empty batch");
stmt.clearBatch();
assertBatchUpdateCounts(new int[0], stmt.executeBatch());
stmt.close();
commit();
}