Netbeans Hql Editor Wrong Translation To Sql
I'm trying to access a MySQL database from a Java webservice. I'm using the NetBeans IDE and am following the tutorial Using Hibernate in a Web Application Now when I try to test t
Solution 1:
I typed the HQL query
fromcallwhile it should be:
fromCallwith a capital first letter.
Dumb mistake, I thought it was the database table, but apparently it's the POJO name that you have to specify.
Post a Comment for "Netbeans Hql Editor Wrong Translation To Sql"