Reputation: 1097
Is it possible to convert JPQL query to SQL and save this query to database?
I want to write JPQL queries when developing program. But whet will deploy application to server I need compile querys to native SQL depends on DB.
Upvotes: 3
Views: 18014
Reputation: 21145
There will be no JPA standard way to get the SQL. The EclipseLink specific solution is available in EclipseLink's FAQ http://wiki.eclipse.org/EclipseLink/FAQ/JPA#How_to_get_the_SQL_for_a_Query.3F
Upvotes: 1
Reputation: 1097
I found the answer for Hibernate HQL queries;
final Query query = sessionFactory.getCurrentSession().createQuery(hql);
final QueryTranslatorFactory ast = new ASTQueryTranslatorFactory();
final QueryTranslatorImpl newQueryTranslator = (QueryTranslatorImpl) ast.createQueryTranslator(queryId, query.getQueryString(), Collections.EMPTY_MAP, (SessionFactoryImplementor) sessionFactory);
newQueryTranslator.compile(null, false);
sql = newQueryTranslator.getSQLString();
Thanks to:
Upvotes: 9