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

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

Uses of TupleDesc in org.postgresql.pljava.internal
 

Methods in org.postgresql.pljava.internal that return TupleDesc
 TupleDesc TupleTable.getTupleDesc()
           
 TupleDesc Relation.getTupleDesc()
          Returns a descriptor that describes tuples in this Relation.
 TupleDesc Portal.getTupleDesc()
          Returns the TupleDesc that describes the row Tuples for this Portal.
 TupleDesc HeapTupleHeader.getTupleDesc()
          Obtains the TupleDesc that describes the tuple and returns it.
 

Methods in org.postgresql.pljava.internal with parameters of type TupleDesc
 Object Tuple.getObject(TupleDesc tupleDesc, int index)
          Obtains a value from the underlying native HeapTuple structure.
static TupleTable SPI.getTupTable(TupleDesc known)
          Returns the value of the global variable SPI_tuptable.
 

Uses of TupleDesc in org.postgresql.pljava.jdbc
 

Methods in org.postgresql.pljava.jdbc that return TupleDesc
protected  TupleDesc TriggerResultSet.getTupleDesc()
           
protected  TupleDesc SingleTupleReader.getTupleDesc()
           
protected  TupleDesc SingleRowWriter.getTupleDesc()
           
protected abstract  TupleDesc SingleRowResultSet.getTupleDesc()
           
 

Constructors in org.postgresql.pljava.jdbc with parameters of type TupleDesc
SingleRowWriter(TupleDesc tupleDesc)
           
SingleTupleReader(long pointer, TupleDesc tupleDesc)
           
SPIResultSetMetaData(TupleDesc tupleDesc)
          Constructor.
SQLInputFromTuple(long heapTupleHeaderPointer, TupleDesc tupleDesc)
           
SQLOutputToTuple(TupleDesc tupleDesc)
           
TriggerResultSet(TupleDesc tupleDesc, Tuple tuple, boolean readOnly)