Home | History | Annotate | Download | only in JDBC2z

Lines Matching defs:batch

27     private ArrayList<BatchArg> batch;
35 this.batch = null;
386 if (batch == null) {
387 batch = new ArrayList<BatchArg>(args.length);
390 batch.add(new BatchArg(args[i], blobs[i]));
395 if (batch == null) {
398 int[] ret = new int[batch.size() / args.length];
406 BatchArg b = (BatchArg) batch.get(index++);
418 throw new BatchUpdateException("batch failed", ret);
424 if (batch != null) {
425 batch.clear();
426 batch = null;