Content deleted Content added
Teemu Leisti (talk | contribs) m →External links: replaced link to the Java 5 tutorial by a link to the Java 6 tutorial on JPQL |
|||
Line 93:
public List<Author> getAuthorsByLastName(String lastName) {
String queryString = "SELECT a FROM Author a " +
"WHERE
Query query = getEntityManager().createQuery(queryString);
|