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

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

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

import com.databricks.jdbc.client.IDatabricksUCVolumeClient;
import java.sql.Connection;

/** Interface providing Databricks specific Connection APIs. */
public interface IDatabricksConnection {

  /** Returns the underlying session for the connection. */
  IDatabricksSession getSession();

  /**
   * Closes a statement from the connection's active set.
   *
   * @param statement
   */
  void closeStatement(IDatabricksStatement statement);

  /** Returns the corresponding sql connection object */
  Connection getConnection();

  /** Returns a UC Volume client instance */
  IDatabricksUCVolumeClient getUCVolumeClient();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy