The query-by-example tag has no wiki summary.
0
votes
2answers
24 views
How to get all word permutaions using hibernate?
I want to create a hibernate query using hql or criteria to get all permutations of a word, for the word elepahant i want to get:
eliphant
ilephant
iliphant
elefant
at first i assumed that "%" + ...
0
votes
0answers
22 views
How to do AND operation between Object attributes passed to hibernate query by example?
I used hibernate query by example to check if for object existence but it seems that its working by OR the object attributes, this is my query by example method:
public List<T> ...
0
votes
2answers
328 views
How to fetch data using example object in JPA 2
I'm using Hibernate 3.5.6 and JPA 2.
Here is my code:
public List<Route> searchRoutesEndingAt(GeoLocation destinationLocation,
int destinationRangeInMeters, RouteUserPref ...
1
vote
2answers
235 views
Hibernate Example does not find any instance
I gota wired problem.
I use the Hibernate to find entities by Example.
Unfortunately I can not find any instance even if i got I have about 20000 entries in the Table.
My question is, how to debug ...
1
vote
2answers
317 views
ASP.NET MVC4 Query By Example Open Source Suggestions
We're currently building a new application and part of the functionality we want to include for users is the ability to build ad-hoc querys through the web UI for reporting purposes.
e.g. The user ...
0
votes
1answer
224 views
MySQL Reserve keywords documentation with examples
There are a list of MYSQL Reserve keywords , BUT
is there any documentation or link where i can find any example/usage of these keywords?
for eg: i want to know where do we use 'with' or 'use' ...
0
votes
2answers
988 views
hibernate createCriteria on a FK field is not working for me
I've been stuck with this for a while and cannot make progress. The question is how to use Hibernate's createCriteria when the restrictive field in DB is a FK.
Here are 2 tables: account and ...
0
votes
1answer
93 views
Suggestion Database Query API
Working on a proprietary Bioinformatics software that manipulate domain objects, I have to enhance the API so that external parties can access (CRUD) data stored in the internal DB.
The data are ...
0
votes
1answer
974 views
Hibernate: queries by example and many-to-one relationships
Let's say those are my entities:
Table1.java
@Entity
public class Table1 {
// Many to one
private Table2 table2;
// Raw attributes
// ...
}
Table2.java
@Entity
public class ...
0
votes
1answer
104 views
Access 2007: Can this query be created using “Query By Example”?
I'm sure this I can write this in VBA, but the question is: can I do this in Access 2007's Query By Example? Those who will maintain my work are more familiar with Query By Example than VBA.
...
5
votes
2answers
850 views
Does Dapper support strongly typed objects with a stored procedure?
Basically, I want to use the "nice" Dapper syntax for a stored procedure, without having to manually use exec MySproc @p1, @p2, @p3, @p4 and so on, but I need to be able to pass in a strongly typed ...
1
vote
1answer
336 views
How suitable is the Dynamic Time Warping algorithm, for a query by humming system?
I'm trying to develop a query by humming system and looking for an efficient algorithm to compare frequencies of hummed queries against the frequencies in the database. Seems like Dynamic Time ...
1
vote
1answer
786 views
Hibernate Example Criteria query: filtering by child properties
I have done my fair amount of research and finally decided to ask this.
I have two classes like this:
Employee
-emp_id
-name
-dep_id
Department
-dep_id
-name
I'm using this code to query by ...
2
votes
1answer
435 views
Query by Example on associations
It's very frustrating that you cannot use QBE on associations.
I have a large datatable with about 8 many-to-one columns. There is a a drop-down list for every column to filter the table.
Let's ...
1
vote
2answers
165 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:
...
0
votes
0answers
379 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 ...
2
votes
1answer
2k 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 ...
5
votes
1answer
459 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 ...
1
vote
1answer
1k 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
301 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 ...
2
votes
2answers
560 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
704 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
473 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 ...
3
votes
2answers
3k 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" ...
0
votes
1answer
1k 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
535 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.
...
3
votes
2answers
593 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 ...

