Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
oracle.pgx.api.filter |
This package contains filter data objects.
|
Modifier and Type | Method and Description |
---|---|
PgqlResultSet |
PgxGraph.executePgql(java.lang.String pgqlString)
(BETA) Blocking version of
PgxGraph.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) . |
PgqlResultSet |
PgxGraph.queryPgql(java.lang.String pgqlString,
oracle.pgx.config.PatternMatchingSemantic patternMatchingSemantic)
Deprecated.
since 2.5.0, use
PgxGraph.queryPgql(String) and PGQL function all_different(v1, v2, ...) to find
patterns that are isomorphic |
Modifier and Type | Method and Description |
---|---|
PgxFuture<PgqlResultSet> |
PgxGraph.executePgqlAsync(java.lang.String pgqlString)
(BETA) Submits a PGQL (both select and modify) query.
|
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 FROM-statements.
|
PgxFuture<PgqlResultSet> |
PgxGraph.queryPgqlAsync(java.lang.String pgqlString,
oracle.pgx.config.PatternMatchingSemantic patternMatchingSemantic)
Deprecated.
since 2.5.0, use
PgxGraph.queryPgqlAsync(String) and PGQL function all_different(v1, v2, ...) to find
patterns that are isomorphic |
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. |
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.