Package com.databricks.jdbc.core
Interface IDatabricksConnection
-
- All Known Implementing Classes:
DatabricksConnection
public interface IDatabricksConnectionInterface providing Databricks specific Connection APIs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcloseStatement(IDatabricksStatement statement)Closes a statement from the connection's active set.ConnectiongetConnection()Returns the corresponding sql connection objectIDatabricksSessiongetSession()Returns the underlying session for the connection.IDatabricksUCVolumeClientgetUCVolumeClient()Returns a UC Volume client instance
-
-
-
Method Detail
-
getSession
IDatabricksSession getSession()
Returns the underlying session for the connection.
-
closeStatement
void closeStatement(IDatabricksStatement statement)
Closes a statement from the connection's active set.- Parameters:
statement-
-
getConnection
Connection getConnection()
Returns the corresponding sql connection object
-
getUCVolumeClient
IDatabricksUCVolumeClient getUCVolumeClient()
Returns a UC Volume client instance
-
-