Uses of Class
org.postgresql.pljava.jdbc.AbstractResultSet
Packages that use AbstractResultSet
Package
Description
PL/Java's specialized JDBC implementation that interacts directly with the
backend over SPI.
-
Uses of AbstractResultSet in org.postgresql.pljava.jdbc
Subclasses of AbstractResultSet in org.postgresql.pljava.jdbcModifier and TypeClassDescriptionclass
Implements most getters in terms ofObjectResultSet.getValue(int, java.lang.Class<T>)
,ObjectResultSet.getNumber(int, java.lang.Class)
, or a few otherResultSet
getters that are so implemented, trackswasNull
, and providesObjectResultSet.getObjectValue(int)
as the chief method for subclasses to implement; turns most updaters intoResultSet.updateObject(int,Object)
.class
Implements all methods that change the ResultSet in any way as methods that yield anUnsupportedFeatureException
.class
Provides methods that are common both for a SyntheticResultSet (which is not associated with a statement) and SPIResultSet.class
A single row, read-only ResultSet, specially made for functions and procedures that takes complex types as arguments (PostgreSQL 7.5 and later).class
A single row ResultSetclass
A single row, updateable ResultSet, specially made for functions and procedures that returns complex types or sets.class
A Read-only ResultSet that provides direct access to aPortal
.class
Implements theSQLInput
interface for a user-defined type (UDT) implemented in Java, for the case where a composite type in PostgreSQL is used as the UDT's representation, so it can be accessed as a PG tuple.class
A Synthetic ResultSet that provides direct access to data stored in aArrayList
; chiefly used to return tabular information from...MetaData
objects.class
A single row, updateable ResultSet specially made for triggers.