I\'ve been playing around with a very simple JPA example and am trying to tweak it to an existing database. But I can\'t get past this error. (Below.) It just has to be s
JPQL mostly is case-insensitive. One of the things that is case-sensitive is Java entity names. Change your query to:
"SELECT r FROM FooBar r"