Uses of Class
org.postgresql.core.Tuple
-
Packages that use Tuple Package Description org.postgresql.core org.postgresql.jdbc -
-
Uses of Tuple in org.postgresql.core
Fields in org.postgresql.core with type parameters of type Tuple Modifier and Type Field Description private java.util.List<Tuple>
SetupQueryRunner.SimpleResultHandler. tuples
Methods in org.postgresql.core that return Tuple Modifier and Type Method Description private Tuple
Tuple. copy(boolean forUpdate)
Tuple
Tuple. readOnlyCopy()
Create a read-only copy of the tupleTuple
PGStream. receiveTupleV3()
Read a tuple from the back end.static Tuple
SetupQueryRunner. run(QueryExecutor executor, java.lang.String queryString, boolean wantResults)
Tuple
Tuple. updateableCopy()
Create a copy of the tuple for updating.Methods in org.postgresql.core that return types with arguments of type Tuple Modifier and Type Method Description (package private) java.util.List<Tuple>
SetupQueryRunner.SimpleResultHandler. getResults()
Method parameters in org.postgresql.core with type arguments of type Tuple Modifier and Type Method Description java.sql.ResultSet
BaseStatement. createDriverResultSet(Field[] fields, java.util.List<Tuple> tuples)
Create a synthetic resultset from data provided by the driver.java.sql.ResultSet
BaseStatement. createResultSet(Query originalQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
Create a resultset from data retrieved from the server.void
ResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
Called when result rows are received from a query.void
ResultHandlerBase. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
ResultHandlerDelegate. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
SetupQueryRunner.SimpleResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
-
Uses of Tuple in org.postgresql.jdbc
Fields in org.postgresql.jdbc declared as Tuple Modifier and Type Field Description private Tuple
PgResultSet. rowBuffer
protected Tuple
PgResultSet. thisRow
Fields in org.postgresql.jdbc with type parameters of type Tuple Modifier and Type Field Description private java.util.List<java.util.List<Tuple>>
BatchResultHandler. allGeneratedRows
private java.util.List<Tuple>
BatchResultHandler. latestGeneratedRows
protected java.util.List<Tuple>
PgResultSet. rows
Methods in org.postgresql.jdbc with parameters of type Tuple Modifier and Type Method Description private void
PgResultSet. setRowBufferColumn(Tuple rowBuffer, int columnIndex, java.lang.Object valueObject)
private void
PgResultSet. updateRowBuffer(java.sql.PreparedStatement insertStatement, Tuple rowBuffer, java.util.HashMap<java.lang.String,java.lang.Object> updateValues)
Method parameters in org.postgresql.jdbc with type arguments of type Tuple Modifier and Type Method Description (package private) void
PgResultSet. addRows(java.util.List<Tuple> tuples)
Used to add rows to an already existing ResultSet that exactly match the existing rows.java.sql.ResultSet
PgStatement. createDriverResultSet(Field[] fields, java.util.List<Tuple> tuples)
java.sql.ResultSet
PgStatement. createResultSet(Query originalQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
BatchResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
CallableBatchResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
PgResultSet.CursorResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
void
PgStatement.StatementResultHandler. handleResultRows(Query fromQuery, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor)
private int
PgArray. storeValues(byte[] fieldBytes, java.util.List<Tuple> rows, Field[] fields, int elementOid, int[] dims, int pos, int thisDimension, int index)
Constructor parameters in org.postgresql.jdbc with type arguments of type Tuple Constructor Description PgResultSet(Query originalQuery, BaseStatement statement, Field[] fields, java.util.List<Tuple> tuples, ResultCursor cursor, int maxRows, int maxFieldSize, int rsType, int rsConcurrency, int rsHoldability, boolean adaptiveFetch)
-