Package org.eclipse.persistence.queries
Class JPQLCall
java.lang.Object
org.eclipse.persistence.queries.JPQLCall
- All Implemented Interfaces:
Serializable,Cloneable,Call
Purpose: Used as an abstraction of a database invocation.
A call is an JPQL string.
Responsibilities:
- Parse the JPQL String
- Populate the contained query's selection criteria. Add attributes to ReportQuery (if required).
- See Also:
- Author:
- Jon Driscoll and Joel Lucuik
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.persistence.internal.queries.DatabaseQueryMechanismINTERNAL: Return the appropriate mechanism, with the call added as necessary.org.eclipse.persistence.internal.queries.DatabaseQueryMechanismbuildQueryMechanism(DatabaseQuery query, org.eclipse.persistence.internal.queries.DatabaseQueryMechanism mechanism) INTERNAL: Return the appropriate mechanism, with the call added as necessary.clone()INTERNAL: Return a clone of the call.INTERNAL: Return the string for the callINTERNAL: Return the EJBQL string for this callINTERNAL: Return the EJBQL string for this callgetLogString(org.eclipse.persistence.internal.databaseaccess.Accessor accessor) INTERNAL: Return the SQL string for this call.getQuery()Back reference to query, unfortunately required for events.INTERNAL: Return the SQL string for this call.booleanReturn whether all the results of the call have been returned.booleanINTERNAL: Yes this is an JPQLCallbooleanThe return type is one of, NoReturn, ReturnOneRow or ReturnManyRows.booleanThe return type is one of, NoReturn, ReturnOneRow or ReturnManyRows.booleanisParsed()INTERNAL Is this query ParsedvoidpopulateQuery(org.eclipse.persistence.internal.sessions.AbstractSession session) Populate the query using the information retrieved from parsing the EJBQL.prepareStatement(org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor accessor, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractSession session) INTERNAL: Prepare the JDBC statement, this may be parameterize or a call statement.voidsetEjbqlString(String jpqlString) INTERNAL: Set the EJBQL string for this callvoidsetIsParsed(boolean newIsParsed) INTERNAL Set the isParsed statevoidsetJPQLString(String jpqlString) INTERNAL: Set the JPQL string for this callvoidsetQuery(DatabaseQuery query) INTERNAL: Back reference to query, unfortunately required for events.toString()INTERNAL: Print the JPQL string.voidtranslate(org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractRecord modifyRow, org.eclipse.persistence.internal.sessions.AbstractSession session) INTERNAL: translate method comment.
-
Field Details
-
query
-
jpqlString
-
isParsed
protected boolean isParsed
-
-
Constructor Details
-
JPQLCall
public JPQLCall()PUBLIC: Create a new JPQLCall. -
JPQLCall
PUBLIC: Create a new JPQLCall with an jpqlString.
-
-
Method Details
-
buildNewQueryMechanism
public org.eclipse.persistence.internal.queries.DatabaseQueryMechanism buildNewQueryMechanism(DatabaseQuery query) INTERNAL: Return the appropriate mechanism, with the call added as necessary.- Specified by:
buildNewQueryMechanismin interfaceCall
-
buildQueryMechanism
public org.eclipse.persistence.internal.queries.DatabaseQueryMechanism buildQueryMechanism(DatabaseQuery query, org.eclipse.persistence.internal.queries.DatabaseQueryMechanism mechanism) INTERNAL: Return the appropriate mechanism, with the call added as necessary.- Specified by:
buildQueryMechanismin interfaceCall
-
clone
Description copied from interface:CallINTERNAL: Return a clone of the call. -
getCallString
INTERNAL: Return the string for the call -
getEjbqlString
INTERNAL: Return the EJBQL string for this call -
getJPQLString
INTERNAL: Return the EJBQL string for this call -
getQuery
Back reference to query, unfortunately required for events. -
getLogString
INTERNAL: Return the SQL string for this call. Always return null since this is an EJBQL call- Specified by:
getLogStringin interfaceCall
-
getSQLString
INTERNAL: Return the SQL string for this call. Always return null since this is an EJBQL call -
isJPQLCall
public boolean isJPQLCall()INTERNAL: Yes this is an JPQLCall -
isFinished
public boolean isFinished()Return whether all the results of the call have been returned.- Specified by:
isFinishedin interfaceCall
-
isParsed
public boolean isParsed()INTERNAL Is this query Parsed -
populateQuery
public void populateQuery(org.eclipse.persistence.internal.sessions.AbstractSession session) Populate the query using the information retrieved from parsing the EJBQL. -
prepareStatement
public PreparedStatement prepareStatement(org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor accessor, org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractSession session) throws SQLException INTERNAL: Prepare the JDBC statement, this may be parameterize or a call statement. If caching statements this must check for the pre-prepared statement and re-bind to it.- Throws:
SQLException
-
setEjbqlString
INTERNAL: Set the EJBQL string for this call -
setJPQLString
INTERNAL: Set the JPQL string for this call -
setIsParsed
public void setIsParsed(boolean newIsParsed) INTERNAL Set the isParsed state -
setQuery
INTERNAL: Back reference to query, unfortunately required for events. -
translate
public void translate(org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, org.eclipse.persistence.internal.sessions.AbstractRecord modifyRow, org.eclipse.persistence.internal.sessions.AbstractSession session) INTERNAL: translate method comment. -
isNothingReturned
public boolean isNothingReturned()The return type is one of, NoReturn, ReturnOneRow or ReturnManyRows.- Specified by:
isNothingReturnedin interfaceCall
-
isOneRowReturned
public boolean isOneRowReturned()The return type is one of, NoReturn, ReturnOneRow or ReturnManyRows.- Specified by:
isOneRowReturnedin interfaceCall
-
toString
INTERNAL: Print the JPQL string.
-