Package | Description |
---|---|
oracle.pg.rdbms.pgql |
This package contains the APIs for executing PGQL on Oracle Database.
|
oracle.pg.rdbms.pgql.pgview |
Contains the APIs for executing PGQL against PG views on Oracle Database.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PgqlSqlCreateTrans
Holds the SQL translation of a PGQL create.
|
interface |
PgqlSqlDropTrans
Holds the SQL translation of a PGQL drop.
|
interface |
PgqlSqlModifyTrans
Holds the SQL translation of a PGQL modify.
|
interface |
PgqlSqlQueryTrans
Holds the SQL translation of a PGQL query.
|
Modifier and Type | Method and Description |
---|---|
PgqlSqlTrans |
PgqlPreparedStatement.translateStatement()
Translates this instance's PGQL statement into a series of SQL statements.
|
PgqlSqlTrans |
PgqlExecution.translateStatement() |
PgqlSqlTrans |
PgqlPreparedStatement.translateStatement(int parallel, int dynamicSampling, int maxResults, java.lang.String matchOptions, java.lang.String options)
Translates this instance's PGQL statement into a series of SQL statements.
|
PgqlSqlTrans |
PgqlExecution.translateStatement(int parallel, int dynamicSampling, int maxResults, java.lang.String matchOptions, java.lang.String options) |
default PgqlSqlTrans |
PgqlStatement.translateStatement(java.lang.String pgql)
Translates the given PGQL statement into a series of SQL statements.
|
PgqlSqlTrans |
PgqlExecution.translateStatement(java.lang.String pgql, int parallel, int dynamicSampling, int maxResults, java.lang.String matchOptions, java.lang.String options) |
PgqlSqlTrans |
PgqlStatement.translateStatement(java.lang.String pgql, int parallel, int dynamicSampling, int maxResults, java.lang.String matchOptions, java.lang.String options)
Translates the given PGQL statement into a series of SQL statements.
|
PgqlSqlTrans |
PgqlPreparedStatement.translateStatement(java.lang.String matchOptions, java.lang.String options)
Translates this instance's PGQL statement into a series of SQL statements.
|
PgqlSqlTrans |
PgqlExecution.translateStatement(java.lang.String matchOptions, java.lang.String options) |
PgqlSqlTrans |
PgqlExecution.translateStatement(java.lang.String pgql, java.lang.String matchOptions, java.lang.String options) |
PgqlSqlTrans |
PgqlStatement.translateStatement(java.lang.String pgql, java.lang.String matchOptions, java.lang.String options)
Translates the given PGQL statement into a series of SQL statements.
|
Modifier and Type | Class and Description |
---|---|
class |
PgViewModifyTrans
Holds the PGQL to SQL translation of a graph modification against a PG view.
|