1. Is there any .net class for query conditions like DetachedCriteria in Hibernate, but not rely on Hibernate? stackoverflow.comI'm writting a general DAO interface and facing a difficult in general Query operation. Query operation requires a set of query conditions. I'd like to give a interface like
|
2. Hibernate Criteria Query - nested condition stackoverflow.comI can't figure out how to create a query like this with Hibernate Criteria synthax
Do ... |
3. Hibernate, how to count with condition stackoverflow.comI am using oracle and hibernate for mapping. I want to count with a condition in count() function. my code is: select count(case when st.averageMark < su.gradePass then 1 else ... |
4. Use column of join in where condition stackoverflow.comI do the fallowing HQL with NHibernate:
this give me the fallowing sql (from NHProfiler):
|
5. Hibernate createQuery remove() in WHERE condition stackoverflow.comlet's say I have entity Person. When I try to use with hibernate createQuery, it remove ( ) in where condition. Example:
|
6. Hibernate: Conditional query not evaluated correctly stackoverflow.comI'm trying to get the following query to work in Hibernate:
|
7. Build condition with date for jpa2 typesafe query stackoverflow.comI have following query:
but i have problems to build the conditions. Here my code:
|
8. Hibernate query building based on conditions stackoverflow.comI have a form where user can select search criteria. The criterias are say:
|
9. Allow extra join conditions to be specified in HQL join clauses - coderanch.comI have the following query where I want to add further restrictions to the join join clause. I am using the 'wtih' keyword as in written in the hibernate docs. However, I am always getting the following error a org.hibernate.hql.ast.QuerySyntaxError: unexpected token. If I take out 'with p.deleted is null' it works. from Category as c left join fetch c.member left ... |
10. Hibernate Query with AND condition coderanch.com |
11. Updating query with multiple joins in where condition forum.hibernate.orgHi, I wanted to update a table data based on multiple joins with different table keys in where condition. My query is as follows. Update table1 t1, table t2, table t3 set t1.col1=?, t1.col2=? where t1.col1=t2.col3 and t2.col3=t3.col4 I wanted to write the above query using Hibernate query language and update the table1 data based on the joins with t2 and ... |
12. Swedish letters in like condition forum.hibernate.orgHow do I get hibernate to understand that I want to search on swedish letters? Restrictions.like("name", "%") returns everything starting with a A or not only . The same goes for . For it returns everything starting with O and . If you cant see the letter because of some encoding problem, its a A with one dot above. ... |
13. HQL query condition wrong column resolution forum.hibernate.org@Entity @Table(name = "template_queue") public class TemplateQueue { @Id @GeneratedValue(strategy= GenerationType.IDENTITY) private long id; @ManyToOne @JoinColumn(nullable = true) private Queue queue; @ManyToOne private Template template; ... |
14. Challenging question - AND condition in ON clause forum.hibernate.org |
15. Extra condition clause on a left join forum.hibernate.orgI have the following tables: Market ------------------- Market_ID MarketAbbrev |
16. Why h2 ignore query condition in parent table in MSSQL? forum.hibernate.orgHibernate version :2.1rc1 mapping documents : |
17. additional conditions in join clauses forum.hibernate.orgI have a query that I found needs an additional condition in join clause. Is this kind of feature planned in Hibernate? Example: Code: select dr.id, dr.dueDate, c.name, sd.name, d.id, d.name from Survey s right outer join s.dueReport dr *** with s.merchandiser = ? *** join dr.surveyDefinition sd join sd.contractor c, Merchandiser m join m.tasks t join t.depot d where s ... |
18. additional conditions in join clauses forum.hibernate.orgI have a query that I found needs an additional condition in join clause. Is this kind of feature planned in Hibernate? Example: Code: select dr.id, dr.dueDate, c.name, sd.name, d.id, d.name from Survey s right outer join s.dueReport dr *** with s.merchandiser = ? *** join dr.surveyDefinition sd join sd.contractor c, Merchandiser m join m.tasks t join t.depot d where s ... |
19. How to move condition in the WHERE clause to the FROM clause forum.hibernate.org |
20. Criteria Query Question, ignore case for in condition forum.hibernate.orgHi, Using Criteria query api, how do I write a where condition, which will give me list of equipments for case-insensitive equipment names, I have available in a Collection. I understand that for case sensitive where clause, I can use the following ... I already have a list of equipment names in namesCollection converted to upper case. Criteria criteria = session.createCriteria(Equipment.class); ... |
21. conditional select forum.hibernate.orgHello ! I am using Hibernate version:2.1.6 with MySQL 4.1.7. I have a table that has two columns that would represent a date: month and year. I want to select a row that's month and year are before the specified month and year, which means the year is <= than the specified one, and the month would also be <= than ... |
22. Hibernate Filters Like Condition forum.hibernate.org |
23. Hibernate HQL left join and additional ON clause conditions forum.hibernate.orgHello, i have a question, how do i get the following statement done with HQL: SELECT ..... FROM Company company LEFT JOIN loginUsers l ON company.loginUserID = l.loginUserID AND l.loginUserActive=1 OR l.loginUserID=12 the "ON" statement is my problem, where i could have OR / AND or NOT connected statements. Hibernate creates its standard ON statement (i guess) which is something like ... |
24. SQL order by condition forum.hibernate.orgHi We need an SQL like this: ======= select lpad(code, 5, "0") as paddedcode, * from cat_table order by paddedcode; OR select * from cat_table order by lpad(code, 5, "0"); ======= All it needs is an sql alias which is used in the order by field. Hibernate should still populate the object (cat in this example) as normal. Is this possible ... |
25. How to specify and condition using query by Example? forum.hibernate.org |
26. Appending Or condition in the Where clause of the HIB SQL forum.hibernate.orgHi all, Hibernate version : 3.0.5 DBMS : Oraclce 9i Iam having the problem in using the criteria Queries, In my project Iam having three table in which one is master table and other two table has a relation ship with this master table parent --------------------- child1 one to one parent --------------------- child2 one to many consider parent = T_Quotation_mstr table ... |
27. Many-to-any query IN condition forum.hibernate.org |
28. many-to-any IN condition query problem forum.hibernate.org |
29. SQL conditional select -> HQL help forum.hibernate.org |
30. How to create a query with multiple OR/AND conditions forum.hibernate.orgWhat if i need to write a query that matches partial values and returns all the items. Equivalent sql should be select * from table where propName like '%value1% or propName like '%value2% or propName like '%value3% or propName like '%value4% I need to write a Hibernate criteria for the above, how can i do that? |
31. if condition in hibernate query forum.hibernate.orgHi, I am a novice in Hibernate field. I have a SQL query like select distinct atd.docID, atd.Doctitle,col.collectionName, atm.ActionPerformed,atm.ActionDateTime,atm.UserID, (Case when atd.totalNoOfAccess = -1 then a.TotalNoOfAccess else atd.totalNoOfAccess end)TotalNoOfAccess, (Case when atd.DocID not in (Select DocID from TblDocMasterIdentification) then 'Deleted' else dmi.status end)CurrentStatus from TblAuditTrailMaster atm ,TblAuditTrailDoc atd, TblCollections col,tblDocInformation a,TblDocMasterIdentification dmi where atm.AuditID = atd.AuditID and atd.CollectionID = col.CollectionID and ... |
32. Adding a condition in WHERE clause forum.hibernate.orgHi, Lets say my db have the following tables: TABLE-A TABLE-B Col1(PK) ColB1 Col2 ColB2 Col3 ColB3 Col4 Col5 In TABLE-A, Col1 is mapped to Generator Class in hbm file. In TABLE-B, my contents will be ColB1 ColB2 ColB3 ----------------------------------- 1 121 N 2 131 N 3 141 Y (Only one row will have 'Y') I want to map the TABLE-A ... |
33. LIKE condition in HQL forum.hibernate.org |
34. HQL Query with condition at 4th level class association forum.hibernate.orgHi, I have a class structure like this public class Product { private productId; private ProductUse productUse .... } public class ProductUse { private Set useCategories = new HashSet //Collection of Category ..... } public class Category { private long categoryId; //primaryKey private CategoryHead categoryHead; .... } public class CategoryHead { private long categoryHeadId; //Primary key .... } I want to ... |
35. how to write a query with and condition forum.hibernate.org |
36. How to set value in where condition of update query ? forum.hibernate.orgHi All, I tried one Hibernate update query like this. function() { Bean b = new Bean(); b.setName("Name"); b.setDesc("Desc"); b.setStatus("A"); b.setID(107); getHibernateTemplate().update(b); return null; } In this case, one update query is generated which is having its primary key i.e. Id of the table in where condition. Now I want name and status in where condition and on the basis of ... |
37. conditional where clause: CASE WHEN or Criteria forum.hibernate.org |
38. how to write a query using conditional clause in hibernate? forum.hibernate.org |
39. |
40. conditional clauses forum.hibernate.orgI have a search form that allows a users to enter their name. depending on which part of their name they enter in that field i want to compare it against three different columns in the database. Eg Name Cameo Alhassan table columns cli_title, cli_forename, cli_surname, i want to do compare the entry in the search form against these fields so ... |
41. Query with where condition forum.hibernate.org |