hibernater将hql翻译成sql

来源:互联网 发布:js百叶窗特效 编辑:程序博客网 时间:2024/05/22 12:32

protected String hqlToSql(String hql,
   org.hibernate.SessionFactory sessionFactory) throws Exception {
  org.hibernate.hql.ast.QueryTranslatorImpl queryTranslator = new org.hibernate.hql.ast.QueryTranslatorImpl(
    hql, hql, java.util.Collections.EMPTY_MAP,
    (org.hibernate.engine.SessionFactoryImplementor) sessionFactory);

  queryTranslator.compile(java.util.Collections.EMPTY_MAP, false);

  return queryTranslator.getSQLString();
 }

原创粉丝点击