Uses of Interface
oracle.pgx.api.PgqlResultSet
-
Packages that use PgqlResultSet Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.frames This package contains classes and utilities to build and manipulate PGX Frames. -
-
Uses of PgqlResultSet in oracle.pgx.api
Methods in oracle.pgx.api that return PgqlResultSet Modifier and Type Method Description PgqlResultSet
PgxGraph. executePgql(java.lang.String pgqlString)
Blocking version ofPgxGraph.executePgqlAsync(String)
.PgqlResultSet
PgxSession. executePgql(java.lang.String pgqlString)
Blocking version ofPgxSession.executePgqlAsync(String)
.PgqlResultSet
PgxPreparedStatement. executeQuery()
Blocking version ofPgxPreparedStatement.executeQueryAsync()
.PgqlResultSet
PgxSession. getPgqlResultSet(java.lang.String id)
Blocking version ofPgxSession.getPgqlResultSetAsync(String)
.PgqlResultSet
PgxPreparedStatement. getResultSet()
Retrieves the current result as a ResultSet object.PgqlResultSet
PgqlResultSet. print()
Prints all results toSystem.out
.default PgqlResultSet
PgqlResultSet. print(long numResults)
PrintsnumResults
results toSystem.out
.default PgqlResultSet
PgqlResultSet. print(long numResults, int from)
PrintsnumResults
results fromfrom
th result toSystem.out
.PgqlResultSet
PgqlResultSet. print(java.io.PrintStream printStream, long numResults, int from)
Same asprint(long, int)
except that this method prints content toprintStream
.PgqlResultSet
PgxGraph. queryPgql(java.lang.String pgqlString)
Blocking version ofPgxGraph.queryPgql(String)
.PgqlResultSet
PgxSession. queryPgql(java.lang.String pgqlString)
Blocking version ofPgxSession.queryPgql(String)
.Methods in oracle.pgx.api that return types with arguments of type PgqlResultSet Modifier and Type Method Description PgxFuture<PgqlResultSet>
PgxGraph. executePgqlAsync(java.lang.String pgqlString)
Submits a PGQL (both select and modify) query.PgxFuture<PgqlResultSet>
PgxSession. executePgqlAsync(java.lang.String pgqlString)
Submits any query with a ON-clause.PgxFuture<PgqlResultSet>
PgxPreparedStatement. executeQueryAsync()
Executes the PGQL query in thisPgxPreparedStatement
object and returns thePgqlResultSet
object generated by the query.PgxFuture<PgqlResultSet>
PgxSession. getPgqlResultSetAsync(java.lang.String id)
Gets a PGQL result set by ID.PgxFuture<PgqlResultSet>
PgxPreparedStatement. getResultSetAsync()
Retrieves the current result as a PgxFuture with the ResultSet object.PgxFuture<PgqlResultSet>
PgxGraph. queryPgqlAsync(java.lang.String pgqlString)
Submits a pattern matching select only query.PgxFuture<PgqlResultSet>
PgxSession. queryPgqlAsync(java.lang.String pgqlString)
Submits a pattern matching query with a ON-clause. -
Uses of PgqlResultSet in oracle.pgx.api.frames
Methods in oracle.pgx.api.frames that return PgqlResultSet Modifier and Type Method Description PgqlResultSet
PgxFrame. toPgqlResultSet()
Creates a new PgqlResultSet having the same content as this frame.Methods in oracle.pgx.api.frames that return types with arguments of type PgqlResultSet Modifier and Type Method Description abstract PgxFuture<PgqlResultSet>
PgxFrame. toPgqlResultSetAsync()
Creates a new PgqlResultSet having the same content as this frame.
-