Quote:
What I was getting at here though is what releases the ResultSet?
see bold part , 4 classesCode:String query = "SELECT * FROM CabeceraAlmacen c, DetalleAlmacen d, Articulo a, Medida m WHERE " +
" c.idnumero=d.idnumero AND c.serie=d.serie AND " +
" d.idArticulo=a.idArticulo AND a.idMedida=m.idMedida AND " +
" c.serie='SAL' AND c.idnumero=?";
the ResultSet should return a header with its detail used by jasper report , thats all

