Package com.databricks.jdbc.api.internal
Interface IDatabricksStatementInternal
-
- All Known Implementing Classes:
DatabricksPreparedStatement,DatabricksStatement
public interface IDatabricksStatementInternalExtended callback handle for java.sql.Statement interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidallowInputStreamForVolumeOperation(boolean allowedInputStream)voidclose(boolean removeFromSession)org.apache.http.entity.InputStreamEntitygetInputStreamForUCVolume()intgetMaxRows()StatementgetStatement()StatementIdgetStatementId()voidhandleResultSetClose(IDatabricksResultSet resultSet)booleanisAllowedInputStreamForVolumeOperation()voidsetInputStreamForUCVolume(org.apache.http.entity.InputStreamEntity inputStream)voidsetStatementId(StatementId statementId)
-
-
-
Method Detail
-
close
void close(boolean removeFromSession) throws DatabricksSQLException- Throws:
DatabricksSQLException
-
handleResultSetClose
void handleResultSetClose(IDatabricksResultSet resultSet) throws DatabricksSQLException
- Throws:
DatabricksSQLException
-
getMaxRows
int getMaxRows() throws DatabricksSQLException- Throws:
DatabricksSQLException
-
setStatementId
void setStatementId(StatementId statementId)
-
getStatementId
StatementId getStatementId()
-
getStatement
Statement getStatement()
-
allowInputStreamForVolumeOperation
void allowInputStreamForVolumeOperation(boolean allowedInputStream) throws DatabricksSQLException- Throws:
DatabricksSQLException
-
isAllowedInputStreamForVolumeOperation
boolean isAllowedInputStreamForVolumeOperation() throws DatabricksSQLException- Throws:
DatabricksSQLException
-
setInputStreamForUCVolume
void setInputStreamForUCVolume(org.apache.http.entity.InputStreamEntity inputStream) throws DatabricksSQLException- Throws:
DatabricksSQLException
-
getInputStreamForUCVolume
org.apache.http.entity.InputStreamEntity getInputStreamForUCVolume() throws DatabricksSQLException- Throws:
DatabricksSQLException
-
-