Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
Modifier and Type | Method and Description |
---|---|
PgqlResultSet |
PgxPreparedStatement.executeQuery()
Blocking version of
PgxPreparedStatement.executeQueryAsync() . |
PgqlResultSet |
PgxSession.getPgqlResultSet(java.lang.String id)
Blocking version of
PgxSession.getPgqlResultSetAsync(String) . |
PgqlResultSet |
PgxGraph.queryPgql(java.lang.String pgqlString)
Blocking version of
PgxGraph.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> |
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> |
PgxGraph.queryPgqlAsync(java.lang.String pgqlString)
Submits a pattern matching query.
|
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 |
Copyright © 2017 Oracle Corp. All Rights Reserved.