Tagged Questions
0
votes
1answer
141 views
Multiple join level with hibernate criteria
I am new to Hibernate and I would Like to know how this sort of things with Criteria :
I have three classes A, B and C.
the Class A has the association @OneToMany with class B. And Class B have the ...
0
votes
2answers
62 views
Continue MYSQL output in PHP
I have a select on a database, like this:
$result = mysql_query("
SELECT dat_eb_registrants.id, dat_eb_registrants.first_name,
dat_eb_registrants.last_name, ...
1
vote
1answer
180 views
NHibernate Fetch / ThenFetch for joined siblings
I have the following (simplified) hierarchy of entities:
RootClass
->DescriptorClass
->SomeChild->DescriptorClass
->SomeGrandChild
I would like to fetch everything in a ...
0
votes
0answers
150 views
NHibernate Join in NamedQuery
Please any one. I have this 3 NamedQueries:
<query name="Query1" cacheable="false" read-only="true" >
<![CDATA[
select distinct ber from BanxicoExchangeRate ber
left outer join ...
4
votes
1answer
4k views
query specified join fetching, but the owner of the fetched association was not present in the select list
I'm selecting two id columns but get error specified:
org.hibernate.QueryException: query specified join fetching, but the owner of the fetched association was not present in the select list
...
0
votes
1answer
193 views
Loading child entities in parent/child relationship with JPA
My domain has a Category entity which has a biderectional relationship on itself. Each category can have a parent and children.
@Entity
public class Category implements DomainObject {
private ...
0
votes
1answer
74 views
Backbonejs only fetching one record on PHP JOIN
Alright, so I have a php that responds to a GET HTTP request; this php script calls the database, and retrieves a set of rows.
$results = $db->pdoquery("SELECT * FROM posts JOIN users ON ...
1
vote
1answer
88 views
Zend_Db_Select join to Zend_Db_select
Two models are returned as Zend_Db_Select objects.
Then, I need to join them and fetch data together at once.
class Model_User extends Abstract_Model {
public function sqlUser() {
return ...
0
votes
2answers
221 views
Hibernate produces extra sql
I have two entities: Parent and Child. And there is @OneToOne relationship between them.
I have the following query: from Parent p left join fetch p.child.
If there is a row in Parent with non ...
2
votes
2answers
541 views
Hibernate 'join' fetching weird behaviour
I have a user and a message table. User to Message are one-to-many relationships and Message to User are many-to-one relationships. I've marked one of the many-to-one as fetch join. When I 'get' a ...
3
votes
0answers
2k views
JPA Hibernate left join fetch generating mutiple queries
I have a jpql query to eagerly fetch multi level associations as follows
select distinct s from Singer s
left join fetch s.singerIdentifiers si //singerIdentifiers is collection in Singer object
...
0
votes
1answer
285 views
Multiple JQPL fetch joins fail with Hibernate
Using Hibernate 3.6.7 and JPA 2, I cannot have two fetch joins in one query. Entity has a self referencing field called parent. localizedTexts is an @ElementCollection, of Java type of Map. ...
3
votes
2answers
6k views
Hibernate fetch join -> cannot fetch multiple bags
Problem is i have two bags in my entity which i would like to display in my jsf frontend (Spring in the back so no lazy loading). So i have to eagerly fetch them to display the information in a list ...
1
vote
1answer
895 views
Hibernate EntityManager + Query Cache - “join fetch” not working
I am trying to cache a query like this:
TypedQuery<Foo> q = em.createQuery(
"SELECT foo FROM Foo foo " +
"INNER JOIN FETCH Foo.bar "
);
q.setHint("org.hibernate.cacheable", true);
The ...
0
votes
2answers
920 views
nhibernate collection set mapping to avoid n+1 select and duplicate rows with fetch join
I have a object table and object aliases table.
The aliases is just a set collection of strings:
object.Aliases
If I map the collection like this:
<class name="Object" table="Object" ...
2
votes
0answers
219 views
Wrong number of children items returned in join fetch on JPA
I have a JPA OneToMany association
@OneToMany(mappedBy = "playlist", fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@IndexColumn(name = "intSequence")
private List<Track> tracks;
in ...
0
votes
3answers
1k views
fetch=join to tables to one class NHibernate
I have read some post about fetch=join - http://nhforge.org/blogs/nhibernate/archive/2009/04/09/nhibernate-mapping-lt-many-to-one-gt.aspx (ser4ik.livejournal.com/2505.html)
So I have some question, ...