Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
oracle.pgx.api.filter |
This package contains filter data objects.
|
oracle.pgx.api.frames |
This package contains classes and utilities to build and manipulate PGX Frames.
|
Modifier and Type | Method and Description |
---|---|
PgqlResultSet |
PgxGraph.executePgql(java.lang.String pgqlString)
Blocking version of
PgxGraph.executePgqlAsync(String) . |
PgqlResultSet |
PgxSession.executePgql(java.lang.String pgqlString)
Blocking version of
PgxSession.executePgqlAsync(String) . |
PgqlResultSet |
PgxPreparedStatement.executeQuery()
Blocking version of
PgxPreparedStatement.executeQueryAsync() . |
PgqlResultSet |
PgxSession.getPgqlResultSet(java.lang.String id)
Blocking version of
PgxSession.getPgqlResultSetAsync(String) . |
PgqlResultSet |
PgxPreparedStatement.getResultSet()
Retrieves the current result as a ResultSet object.
|
PgqlResultSet |
PgqlResultSet.print()
Prints all results to
System.out . |
default PgqlResultSet |
PgqlResultSet.print(long numResults)
Prints
numResults results to System.out . |
default PgqlResultSet |
PgqlResultSet.print(long numResults, int from)
Prints
numResults results from from th result to System.out . |
PgqlResultSet |
PgqlResultSet.print(java.io.PrintStream printStream, long numResults, int from)
Same as
print(long, int) except that this method prints content to printStream . |
PgqlResultSet |
PgxGraph.queryPgql(java.lang.String pgqlString)
Blocking version of
PgxGraph.queryPgql(String) . |
PgqlResultSet |
PgxSession.queryPgql(java.lang.String pgqlString)
Blocking version of
PgxSession.queryPgql(String) . |
Modifier and Type | Method and 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 this
PgxPreparedStatement object and returns the PgqlResultSet 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.
|
Constructor and Description |
---|
ResultSetEdgeFilter(PgqlResultSet resultSet, java.lang.String columnName)
Deprecated.
since 20.0 - use
EdgeFilter.fromPgqlResultSet(oracle.pgx.common.IdentifiableResultSet, String) instead. |
ResultSetVertexFilter(PgqlResultSet resultSet, java.lang.String columnName)
Deprecated.
since 20.0 - use
VertexFilter.fromPgqlResultSet(oracle.pgx.common.IdentifiableResultSet, String) instead. |
Modifier and Type | Method and Description |
---|---|
PgqlResultSet |
PgxFrame.toPgqlResultSet()
Creates a new PgqlResultSet having the same content as this frame.
|
Modifier and Type | Method and Description |
---|---|
abstract PgxFuture<PgqlResultSet> |
PgxFrame.toPgqlResultSetAsync()
Creates a new PgqlResultSet having the same content as this frame.
|