What kind of query standards can be used in hibernate?
-
Native SQL
-
HSQL
-
Both
-
None of the above
C
Correct answer
Explanation
Hibernate supports multiple query approaches: Native SQL (direct database queries) and HQL (Hibernate Query Language, an object-oriented query language). Both can be used depending on the use case, giving developers flexibility in how they query data.