0

since my new project has to use toplink-essentials which only supports jpa 1, I'm looking for some good jpa-utilities. So far I only worked with jpa 2 (both EclipseLink and Hibernate), which didn't need any utilities to write dynamic queries in 99% of the time.

Now I'm stuck with jpa 1 and wondered if there were some utilities/libraries which could support me in writing my queries a little bit more dynamically.

Jonny

user871611
  • 3,307
  • 7
  • 51
  • 73

1 Answers1

1

TopLink Essentials does support Expression queries which are similar to JPA 2 Criteria. You may be able to use them.

You should also be able to upgrade your server to EclipseLink.

James
  • 17,965
  • 11
  • 91
  • 146
  • Cool, I didn't know about the Expression queries from Toplink. Makes life a little bit easier. I know howto upgrade my server to EclipseLink, but I'm not allowed for nonsense reasons. – user871611 Oct 10 '12 at 13:43