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

ru.yandex.clickhouse.ClickHousePreparedStatement Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ru.yandex.clickhouse;

import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Collection;


public interface ClickHousePreparedStatement extends PreparedStatement {

    void setArray(int parameterIndex, Collection collection) throws SQLException;

    void setArray(int parameterIndex, Object[] array) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy