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 PgqlResultSetPgxGraph. executePgql(java.lang.String pgqlString)Blocking version ofPgxGraph.executePgqlAsync(String).PgqlResultSetPgxSession. executePgql(java.lang.String pgqlString)Blocking version ofPgxSession.executePgqlAsync(String).PgqlResultSetPgxPreparedStatement. executeQuery()Blocking version ofPgxPreparedStatement.executeQueryAsync().PgqlResultSetPgxSession. getPgqlResultSet(java.lang.String id)Blocking version ofPgxSession.getPgqlResultSetAsync(String).PgqlResultSetPgxPreparedStatement. getResultSet()Retrieves the current result as a ResultSet object.PgqlResultSetPgqlResultSet. print()Prints all results toSystem.out.default PgqlResultSetPgqlResultSet. print(long numResults)PrintsnumResultsresults toSystem.out.default PgqlResultSetPgqlResultSet. print(long numResults, int from)PrintsnumResultsresults fromfromth result toSystem.out.PgqlResultSetPgqlResultSet. print(java.io.PrintStream printStream, long numResults, int from)Same asprint(long, int)except that this method prints content toprintStream.PgqlResultSetPgxGraph. queryPgql(java.lang.String pgqlString)Blocking version ofPgxGraph.queryPgql(String).PgqlResultSetPgxSession. 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 thisPgxPreparedStatementobject and returns thePgqlResultSetobject 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 PgqlResultSetPgxFrame. 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.
-