Skip to content Skip to sidebar Skip to footer

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

fromcall

while it should be:

fromCall

with 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"