Home | History | Annotate | Download | only in JDBC2z

Lines Matching defs:batch

12     private ArrayList<String> batch;
18 this.batch = null;
177 if (batch == null) {
178 batch = new ArrayList<String>(1);
180 batch.add(sql);
184 if (batch == null) {
187 int[] ret = new int[batch.size()];
194 execute((String) batch.get(i));
201 throw new BatchUpdateException("batch failed", ret);
207 if (batch != null) {
208 batch.clear();
209 batch = null;