Results 1 to 2 of 2
Thread: Hibernate Setting Up Issues
- 04-04-2010, 10:57 PM #1
Member
- Join Date
- Apr 2010
- Posts
- 2
- Rep Power
- 0
Hibernate Setting Up Issues
When I try to run a simple HQL select statement I get the following error.
Here's my codeJava Code:Thread [main] (Suspended (exception SQLGrammarException)) QueryImpl.list() line: 80 Main.main(String[]) line: 20
And here's my cfg.xml filePHP Code:import java.util.List; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class Main { public static void main(String[] args) { SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory(); Session session = sessionFactory.openSession(); System.out.println("Session Openned"); String hqlQuery = "from Person p"; Query query = session.createQuery(hqlQuery); List<Object> list = query.list(); } }
Any ideas???XML Code:<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost/hibernatepersons</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- Mapping files --> <mapping resource="Address.hbm.xml"/> <mapping resource="Person.hbm.xml"/> <mapping resource="PersonAddress.hbm.xml"/> <mapping resource="User.hbm.xml"/> </session-factory> </hibernate-configuration>
- 04-06-2010, 07:17 AM #2
Member
- Join Date
- Apr 2010
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
jdk issues
By artemff in forum New To JavaReplies: 3Last Post: 01-02-2010, 03:18 AM -
Issues with Jva I.O
By Annatar01 in forum New To JavaReplies: 0Last Post: 02-08-2008, 01:16 AM -
jcheckbox issues need help. thanks.
By carlos123 in forum New To JavaReplies: 3Last Post: 11-05-2007, 10:37 PM -
org.hibernate.ejb.Version <clinit> INFO: Hibernate EntityManager 3.2.0.CR1
By Heather in forum JDBCReplies: 2Last Post: 06-30-2007, 03:01 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks