Hola,
Estoy utilizando hibernate, y tengo un problema con la query, ya que tengo este metodo para obtener la lista de datos que hay en una tabla:
public List listUsuarios() throws DatabaseException {
Session session = null;
Transaction tx = null;
List result = null;
try {
session = hibernateFactory.openSession();
tx = session.beginTransaction();
Query q = session.createQuery("from Usuarios");
if(q!=null)
result = q.list();
tx.commit();
} catch (HibernateException he){
if(tx != null){
try {
tx.rollback();
} catch(HibernateException he2){
throw new DatabaseException(he2);
}
}
throw new DatabaseException(he);
} finally {
if(session != null){
try {
session.flush();
session.close();
} catch(HibernateException he3){
throw new DatabaseException(he3);
}
}
}
return result;
}
Y me salta una exception al hacer q.list(). Alquien sabe donde puede estar el problema? Es que no se me ocurre porque me puede dar error ahi.
Muchas gracias,
saludos