Uses of Class
org.postgresql.pljava.internal.Tuple

Packages that use Tuple
org.postgresql.pljava.internal   
org.postgresql.pljava.jdbc   
 

Uses of Tuple in org.postgresql.pljava.internal
 

Methods in org.postgresql.pljava.internal that return Tuple
 Tuple TupleDesc.formTuple(Object[] values)
          Creates a Tuple that is described by this descriptor and initialized with the supplied values.
 Tuple TriggerData.getNewTuple()
          Returns a Tuple reflecting the new version of the row, if the trigger was fired for an UPDATE, and null if it is for an INSERT or a DELETE.
 Tuple TupleTable.getSlot(int position)
          Returns the Tuple at the given index.
 Tuple TriggerData.getTriggerReturnTuple()
          Commits the changes made on the ResultSet representing new and returns the new tuple.
 Tuple TriggerData.getTriggerTuple()
          Returns a Tuple reflecting the row for which the trigger was fired.
 Tuple Relation.modifyTuple(Tuple original, int[] fieldNumbers, Object[] values)
          Creates a new Tuple by substituting new values for selected columns copying the columns of the original Tuple at other positions.
 

Methods in org.postgresql.pljava.internal with parameters of type Tuple
 Tuple Relation.modifyTuple(Tuple original, int[] fieldNumbers, Object[] values)
          Creates a new Tuple by substituting new values for selected columns copying the columns of the original Tuple at other positions.
 

Uses of Tuple in org.postgresql.pljava.jdbc
 

Methods in org.postgresql.pljava.jdbc that return Tuple
protected  Tuple SPIResultSet.getCurrentRow()
           
 Tuple SQLOutputToTuple.getTuple()
          Creates a tuple from the written values.
 Tuple SingleRowWriter.getTupleAndClear()
          Creates a tuple from the current row values and then cancel all row updates to prepare for a new row.
protected  Tuple SPIResultSet.peekNext()
           
 

Constructors in org.postgresql.pljava.jdbc with parameters of type Tuple
TriggerResultSet(TupleDesc tupleDesc, Tuple tuple, boolean readOnly)