📄 genericactivationholder.java
字号:
} /** * @see Activation#clearResultSet */ public void clearResultSet() { ac.clearResultSet(); } /** * @see Activation#setCurrentRow * */ public void setCurrentRow(ExecRow currentRow, int resultSetNumber) { ac.setCurrentRow(currentRow, resultSetNumber); } /** * @see Activation#clearCurrentRow */ public void clearCurrentRow(int resultSetNumber) { ac.clearCurrentRow(resultSetNumber); } /** * @see Activation#getPreparedStatement */ public ExecPreparedStatement getPreparedStatement() { return ps; } public void checkStatementValidity() throws StandardException { ac.checkStatementValidity(); } /** * @see Activation#getResultDescription */ public ResultDescription getResultDescription() { return ac.getResultDescription(); } /** * @see Activation#getDataValueFactory */ public DataValueFactory getDataValueFactory() { return ac.getDataValueFactory(); } /** * @see Activation#getRowLocationTemplate */ public RowLocation getRowLocationTemplate(int itemNumber) { return ac.getRowLocationTemplate(itemNumber); } /** * @see Activation#getHeapConglomerateController */ public ConglomerateController getHeapConglomerateController() { return ac.getHeapConglomerateController(); } /** * @see Activation#setHeapConglomerateController */ public void setHeapConglomerateController(ConglomerateController updateHeapCC) { ac.setHeapConglomerateController(updateHeapCC); } /** * @see Activation#clearHeapConglomerateController */ public void clearHeapConglomerateController() { ac.clearHeapConglomerateController(); } /** * @see Activation#getIndexScanController */ public ScanController getIndexScanController() { return ac.getIndexScanController(); } /** * @see Activation#setIndexScanController */ public void setIndexScanController(ScanController indexSC) { ac.setIndexScanController(indexSC); } /** * @see Activation#getIndexConglomerateNumber */ public long getIndexConglomerateNumber() { return ac.getIndexConglomerateNumber(); } /** * @see Activation#setIndexConglomerateNumber */ public void setIndexConglomerateNumber(long indexConglomerateNumber) { ac.setIndexConglomerateNumber(indexConglomerateNumber); } /** * @see Activation#clearIndexScanInfo */ public void clearIndexScanInfo() { ac.clearIndexScanInfo(); } /** * @see Activation#close * * @exception StandardException Thrown on error */ public void close() throws StandardException { ac.close(); } /** * @see Activation#isClosed */ public boolean isClosed() { return ac.isClosed(); } /** Set the activation for a single execution. @see Activation#setSingleExecution */ public void setSingleExecution() { ac.setSingleExecution(); } /** Is the activation set up for a single execution. @see Activation#isSingleExecution */ public boolean isSingleExecution() { return ac.isSingleExecution(); } /** Get the number of subqueries in the entire query. @return int The number of subqueries in the entire query. */ public int getNumSubqueries() { return ac.getNumSubqueries(); } /** * @see Activation#setForCreateTable() */ public void setForCreateTable() { ac.setForCreateTable(); } /** * @see Activation#getForCreateTable() */ public boolean getForCreateTable() { return ac.getForCreateTable(); } /** * @see Activation#setDDLTableDescriptor */ public void setDDLTableDescriptor(TableDescriptor td) { ac.setDDLTableDescriptor(td); } /** * @see Activation#getDDLTableDescriptor */ public TableDescriptor getDDLTableDescriptor() { return ac.getDDLTableDescriptor(); } /** * @see Activation#setMaxRows */ public void setMaxRows(int maxRows) { ac.setMaxRows(maxRows); } /** * @see Activation#getMaxRows */ public int getMaxRows() { return ac.getMaxRows(); } public void setTargetVTI(java.sql.ResultSet targetVTI) { ac.setTargetVTI(targetVTI); } public java.sql.ResultSet getTargetVTI() { return ac.getTargetVTI(); } /* Class implementation */ /** * Mark the activation as unused. */ public void markUnused() { ac.markUnused(); } /** * Is the activation in use? * * @return true/false */ public boolean isInUse() { return ac.isInUse(); } /** @see org.apache.derby.iapi.sql.Activation#addWarning */ public void addWarning(SQLWarning w) { ac.addWarning(w); } /** @see org.apache.derby.iapi.sql.Activation#getWarnings */ public SQLWarning getWarnings() { return ac.getWarnings(); } /** @see org.apache.derby.iapi.sql.Activation#clearWarnings */ public void clearWarnings() { ac.clearWarnings(); } /** @see Activation#informOfRowCount @exception StandardException Thrown on error */ public void informOfRowCount(NoPutResultSet resultSet, long rowCount) throws StandardException { ac.informOfRowCount(resultSet, rowCount); } /** * @see Activation#isCursorActivation */ public boolean isCursorActivation() { return ac.isCursorActivation(); } public ConstantAction getConstantAction() { return ac.getConstantAction(); } public void setParentResultSet(TemporaryRowHolder rs, String resultSetId) { ac.setParentResultSet(rs, resultSetId); } public Vector getParentResultSet(String resultSetId) { return ac.getParentResultSet(resultSetId); } public void clearParentResultSets() { ac.clearParentResultSets(); } public Hashtable getParentResultSets() { return ac.getParentResultSets(); } public void setForUpdateIndexScan(CursorResultSet forUpdateResultSet) { ac.setForUpdateIndexScan(forUpdateResultSet); } public CursorResultSet getForUpdateIndexScan() { return ac.getForUpdateIndexScan(); } public java.sql.ResultSet[][] getDynamicResults() { return ac.getDynamicResults(); } public int getMaxDynamicResults() { return ac.getMaxDynamicResults(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -