Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.apache.derby.iapi.sql.execute.ExecRow

Uses of ExecRow in org.apache.derby.iapi.sql.execute
 

Subinterfaces of ExecRow in org.apache.derby.iapi.sql.execute
 interface ExecIndexRow
          This is an extension of ExecRow for use with indexes and sorting.
 

Methods in org.apache.derby.iapi.sql.execute that return ExecRow
 ExecRow TargetResultSet.preprocessSourceRow(ExecRow sourceRow)
          Preprocess the source row prior to getting it back from the source.
 ExecRow NoPutResultSet.getNextRowCore()
          Return the requested values computed from the next row (if any) for which the restriction evaluates to true.
 ExecRow ExecutionFactory.getValueRow(int numColumns)
          This returns a new row that is storable but not indexable
 ExecRow ExecRow.getClone()
          Clone the Row and its contents.
 ExecRow ExecRow.getClone(org.apache.derby.iapi.services.io.FormatableBitSet clonedCols)
          Clone the Row.
 ExecRow ExecRow.getNewNullRow()
          Get a new row with the same columns type as this one, containing nulls.
 ExecRow CursorResultSet.getCurrentRow()
          Returns the current row of the result set.
 

Methods in org.apache.derby.iapi.sql.execute with parameters of type ExecRow
 void TupleFilter.init(ExecRow parameters)
          Initialize a Filter with a vector of parameters.
 org.apache.derby.iapi.types.BooleanDataValue TupleFilter.execute(ExecRow currentRow)
          Pump a row through the Filter.
 void TemporaryRowHolder.insert(ExecRow inputRow)
          Insert a row
 void TargetResultSet.changedRow(ExecRow execRow, org.apache.derby.iapi.types.RowLocation rowLocation)
          Pass a changed row and the row location for that row to the target result set.
 ExecRow TargetResultSet.preprocessSourceRow(ExecRow sourceRow)
          Preprocess the source row prior to getting it back from the source.
 void RowChanger.insertRow(ExecRow baseRow)
          Insert a row into the table and perform associated index maintenance.
 void RowChanger.deleteRow(ExecRow baseRow, org.apache.derby.iapi.types.RowLocation baseRowLocation)
          Delete a row from the table and perform associated index maintenance.
 void RowChanger.updateRow(ExecRow oldBaseRow, ExecRow newBaseRow, org.apache.derby.iapi.types.RowLocation baseRowLocation)
          Update a row in the table and perform associated index maintenance.
 void NoPutResultSet.setCurrentRow(ExecRow row)
          Set the current row to the row passed in.
 ExecIndexRow ExecutionFactory.getIndexableRow(ExecRow valueRow)
          This returns the value row as an indexable row
 void ExecIndexRow.execRowToExecIndexRow(ExecRow valueRow)
          Turn the ExecRow into an ExecIndexRow.