-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Query by partially populated object
PostPosted: Mon Feb 20, 2006 3:29 pm 
Newbie

Joined: Mon Feb 20, 2006 3:27 pm
Posts: 4
Hi Folks, I could have sworn there was a way to use a partially populated dao object to query the database. eg...

Product p = new Product();
p.setAvailable(true);

session.find(p);

.. it returns all objects where available = true in the database.

Am I crazy.. do I have to use a criteria query for this.. or is there a way to do what I have above?

Thanks


Top
 Profile  
 
 Post subject: like this
PostPosted: Mon Feb 20, 2006 5:36 pm 
Expert
Expert

Joined: Fri Jul 22, 2005 2:42 pm
Posts: 670
Location: Seattle, WA
Cat cat = new Cat();
cat.setSex('F');
cat.setColor(Color.BLACK);
List results = session.createCriteria(Cat.class)
.add( Example.create(cat) )
.list();

http://www.hibernate.org/hib_docs/v3/re ... a-examples

_________________
--------------
Konstantin

SourceLabs - dependable OpenSource systems


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.