Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
143 views

NHibernate Criteria QueryByExample stuck with SQL in the middle

I am using Criteria to speed up a query, and I am almost there. Using Query By Example to match up rows in a table, remove duplicate rows with the same id, and then paginate. Of course I can't ...
3
votes
2answers
1k views

HibernateTemplate findByExample returns no results

I'm trying to use Hibernate QBE (actually, Spring's HibernateTemplate.findByExample() ) to return a list of users by their username. I use a "known good" value to search on (the username "JOHN.SMITH" ...
3
votes
2answers
455 views

Is there a good documentation of NHibernate's query by example feature?

I'm trying to find a good documentation which states exactly, what query by example is capable of and what not. In particular, I want to know, if query by example supports a search like the ...
2
votes
1answer
87 views

Hibernate: Query By Example equivalent of association Criteria Query

I'd like to search my data source for all object instances based on the values of an object related by association. The data model can be simplified to: object of type A holds a list of objects of ...
1
vote
2answers
56 views

Is it possible to search for a Guid in a “Query By Example”?

I need to find whether a computer with a given Guid exists inside a given OU. To do this, I'd prefer to write a Query By Example that searches for a computer matching a Guid. For example: ...
1
vote
1answer
141 views

Hibernate: Query By Example involving one-to-many relationship

I've recently started playing with the query by example component of the Criteria API and have run into a strange issue - an org.hibernate.QueryException is thrown when trying to perform a search. My ...
1
vote
1answer
35 views

Mixing Likes and Equals with NHibernate Query-By-Example?

I have a rather large SOA solution and a newly added service queries approx 9.8 million records using NHibernate's Query By Example. Thus far the performance has been terrible, and a profile on the ...
0
votes
0answers
65 views

What is the format of a Siebel “Query by Example” SOAP request?

I am trying to query Siebel orders using a Siebel prebuilt web service. I am not sure what the required SOAP format for "Query By Example" should be. This is the request skeleton supplied by SoapUI ...
0
votes
2answers
243 views

How to secure Hibernate QBE query

By the moment, I know four kinds of doing transactions with hibernate: Using objects Using HQL Using DB-specific SQL Using criteria (QBE) Well, regarding how strong are they against injections, I ...
0
votes
2answers
196 views

NHibernate QueryByExample including only certain properties

I have created a custom Property Selector to accept an array in the constructor to say which properties should be included in the search. The approach works well as long as there are no component ...
0
votes
1answer
175 views

MYSQL query by example(QBE)

I really don't understand this QBE means.. I have searched but i unable to understand this term .. My client need to generate report using QBE as my knowledge this is REGEXP search but not ...
0
votes
1answer
992 views

NHibernate - Query by Example - Subquery

I know there are MANY ways to achieve the following in NHiberante - i am not interested in other scenarios. What I am wondering is if it is possible to automatically generate a subquery using a ...
0
votes
1answer
339 views

Is there a simple way to do Query By Example in iBATIS?

I had hoped this was baked into the most recent release, but if it is, I can't find the docs via a simple Google search. Failing that, I'd prefer a simple library, but I'll settle for a tutorial. ...