1. Hibernate session.CreateQuery fails with tablename is not mapped coderanch.comHello Everyone I am facing an issue with Hibernate mapping. I have the following code that tries to get all the Authors from the sql server table using the MS JDBC Driver. The code snippet looks like this Session session = sessionFactory.getCurrentSession(); Transaction tx = session.beginTransaction(); //error line Query query = session.createQuery("from Authors"); // List |
2. Bug at HQL to SQL mapping in createQuery? forum.hibernate.orghi, I have had weird problem creating a query with HQL. DEBUG - HQL: select myThing from MyClass where .. |