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 postgresql Show documentation
Show all versions of postgresql Show documentation
PostgreSQL JDBC Driver JDBC4
package org.postgresql.jdbc;
import org.postgresql.core.Field;
import org.postgresql.core.ParameterList;
import org.postgresql.core.Query;
import org.postgresql.core.ResultCursor;
import java.util.List;
class CallableBatchResultHandler extends BatchResultHandler {
CallableBatchResultHandler(PgStatement statement, Query[] queries, ParameterList[] parameterLists,
int[] updateCounts) {
super(statement, queries, parameterLists, updateCounts, false);
}
public void handleResultRows(Query fromQuery, Field[] fields, List tuples, ResultCursor cursor) {
/* ignore */
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy