Oleksandr Samsonov
Oleksandr Samsonov

Reputation: 1097

JPQL query convert to SQL query

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

Answers (2)

Chris
Chris

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

Oleksandr Samsonov
Oleksandr Samsonov

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:

http://good-old-mushroom-called-bedla.blogspot.com/2012/04/how-to-convert-hql-to-sql-in-hibernate.html

Upvotes: 9

Related Questions