NullPointerException « Stored Procedure « JPA Q&A





1. Stored Procedure Call gives NullPointerException    forum.hibernate.org

Newbie Joined: Thu Feb 09, 2006 1:22 pm Posts: 13 Location: Turkey Hibernate version:3.1.1 Mapping documents: ...

2. NullPointerException when calling stored procedure    forum.hibernate.org

Hi, I'm trying to call a very simple MySQL stored procedure that returns a very simple result set and I'm getting a NullPointerException. Hibernate version: 3.2.1 Mapping documents: {call my_proc()} Code between sessionFactory.openSession() and session.close(): try { HibernateUtil.getSessionFactory().getCurrentSession() .beginTransaction(); Query query = ...

3. NullPointerException, calling StoredProcedure from Hibernate    forum.hibernate.org

Hi All, I got NullPointerException when I call sql server storedprocedure from hibernate mapping. I am sending my code, plz do provide a solution to my problem //mapping code {call selectAllEmployees()} //end of mapping code The following is ...