InterviewSolution
| 1. |
What Is Jpql? |
|
Answer» JPQL (JAVA Persistence Query Language) OFFERS an object-oriented syntax for expressing query that is very similar to SQL. The language is interpreted at runtime, which means you cannot use the COMPILER to verify the correctness and integrity of a query. To adress this LIMITATION, Hibernate includes a Criteria API, which allows queries to be expressed programmatically. JPQL (Java Persistence Query Language) offers an object-oriented syntax for expressing query that is very similar to SQL. The language is interpreted at runtime, which means you cannot use the compiler to verify the correctness and integrity of a query. To adress this limitation, Hibernate includes a Criteria API, which allows queries to be expressed programmatically. |
|