All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tarantool.jdbc.SQLBatchResultHolder Maven / Gradle / Ivy

package org.tarantool.jdbc;

import java.util.List;

/**
 * Wrapper for batch SQL query results.
 */
public class SQLBatchResultHolder {

    private final List results;
    private final Exception error;

    public SQLBatchResultHolder(List results, Exception error) {
        this.results = results;
        this.error = error;
    }

    public List getResults() {
        return results;
    }

    public Exception getError() {
        return error;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy