My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 19: implemen method findMovieByjudul() di AppServiceImpl
1 person starred this issue and may be notified of changes. Back to list
 
Project Member Reported by abet.se...@gmail.com, May 10, 2011
   public Movie findMovieByJudul(String judul) {
        if (judul==null) return null;
		return (Movie) sessionFactory.getCurrentSession()
		.createQuery("FROM Movie m WHERE m.judul=:kd")
		.setParameter("jd",judul)
		.uniqueResult();
    }

Powered by Google Project Hosting