org.postgresql.jdbc.CallableBatchResultHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mogdb-jdbc Show documentation
Show all versions of mogdb-jdbc Show documentation
Java JDBC driver for MogDB
/*
* Copyright (c) 2016, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/
package io.mogdb.jdbc;
import io.mogdb.core.Field;
import io.mogdb.core.ParameterList;
import io.mogdb.core.Query;
import io.mogdb.core.ResultCursor;
import java.util.List;
class CallableBatchResultHandler extends BatchResultHandler {
CallableBatchResultHandler(PgStatement statement, Query[] queries, ParameterList[] parameterLists) {
super(statement, queries, parameterLists, false);
}
public void handleResultRows(Query fromQuery, Field[] fields, List tuples, ResultCursor cursor) {
/* ignore */
}
}