Package oracle.pg.rdbms.pgql
Interface PgqlSqlDropTrans
-
- All Superinterfaces:
PgqlSqlTrans
public interface PgqlSqlDropTrans extends PgqlSqlTrans
Holds the SQL translation of a PGQL drop.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface oracle.pg.rdbms.pgql.PgqlSqlTrans
PgqlSqlTrans.TranslationType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDropTranslation()
Returns a SQL string that is used in the translation of a PGQL DROP PROPERTY GRAPH: A call to opg_apis.drop_pg to drop PG tablesjava.lang.String
getGraphName()
Returns the graph name for the PGQL to SQL translation.java.lang.String
getGraphSchema()
Returns the graph schema for the PGQL to SQL translation.-
Methods inherited from interface oracle.pg.rdbms.pgql.PgqlSqlTrans
getTranslationType
-
-
-
-
Method Detail
-
getGraphSchema
java.lang.String getGraphSchema()
Returns the graph schema for the PGQL to SQL translation.- Returns:
- the graph schema
-
getGraphName
java.lang.String getGraphName()
Returns the graph name for the PGQL to SQL translation.- Returns:
- the graph name
-
getDropTranslation
java.lang.String getDropTranslation()
Returns a SQL string that is used in the translation of a PGQL DROP PROPERTY GRAPH: A call to opg_apis.drop_pg to drop PG tables- Returns:
- the SQL query strings to translate DROP PROPERTY GRAPH
-
-