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

com.databricks.jdbc.core.IDatabricksResultSet Maven / Gradle / Ivy

There is a newer version: 2.6.40-patch-1
Show newest version
package com.databricks.jdbc.core;

import com.databricks.sdk.service.sql.StatementStatus;
import java.io.IOException;
import java.io.InputStream;
import java.sql.SQLException;
import org.apache.http.HttpEntity;

public interface IDatabricksResultSet {
  String statementId();

  StatementStatus getStatementStatus();

  long getUpdateCount() throws SQLException;

  boolean hasUpdateCount() throws SQLException;

  void setVolumeOperationEntityStream(HttpEntity httpEntity) throws SQLException, IOException;

  InputStream getVolumeOperationInputStream() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy