Wiki source code of velocityHqlExamples

Version 21.1 by Vincent Massol on 2009/09/08

Hide last authors
Vincent Massol 18.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc start="2" depth="4"/}}{{/box}}
Vincent Massol 17.1 2
Vincent Massol 20.1 3 = HQL Query Examples in Velocity =
Jean-Vincent Drean 1.1 4
Vincent Massol 21.1 5 XWiki allows user to access documents and objects with [[HQL>>http://www.hibernate.org/hib_docs/reference/en/html/queryhql.html]] queries in [[Velocity>>http://jakarta.apache.org/velocity/docs/user-guide.html]] scripts.
Jean-Vincent Drean 1.1 6
Vincent Massol 21.1 7 General example showing how to display the first 5 results of a given query:
Jean-Vincent Drean 1.3 8
Vincent Massol 21.1 9 {{code language="none"}}
10 #set($hql="<query here>")
11 #set($results = $xwiki.searchDocuments($hql, 5, 0))
Jean-Vincent Drean 1.3 12 #foreach ($item in $results)
Sergiu Dumitriu 4.5 13 * $item
Jean-Vincent Drean 1.3 14 #end
Vincent Massol 15.1 15 {{/code}}
Jean-Vincent Drean 1.3 16
Vincent Massol 21.1 17 The examples below will show you various HQL queries that you can write.
18
19 == Public API (##searchDocuments##) ==
20
21 {{velocity}}{{html}}
22 #info("With this API the query consist in the WHERE condition of a full HQL query. Any user with edit rights can write a script using this API. Any user with view rights can view the result of such a query.")
23 {{/html}}{{/velocity}}
24
Vincent Massol 15.1 25 === Simple Query ===
26
Vincent Massol 21.1 27 Displays all documents who have been created by the user ##XWiki.JohnDoe##:
Jean-Vincent Drean 1.3 28
Vincent Massol 21.1 29 {{code language="none"}}
30 #set($hql = "where doc.creator='XWiki.JohnDoe'")
31 {{/code}}
32
Vincent Massol 15.1 33 === Ordered Query ===
34
Vincent Massol 21.1 35 Displays all documents who have been created by the user ##XWiki.JohnDoe## and sorted by document's last modification date, in ascending order:
Jean-Vincent Drean 1.21 36
Vincent Massol 21.1 37 {{code language="none"}}
38 #set($hql = "where doc.creator='XWiki.VincentMassol' order by doc.date asc")
39 {{/code}}
40
Vincent Massol 15.1 41 === Advanced Query (date & time) ===
Jean-Vincent Drean 1.35 42
Vincent Massol 21.1 43 {{velocity}}{{html wiki="true"}}
44 #info("Since there is no [[standard way to calculate dates interval in HQL>>http://opensource.atlassian.com/projects/hibernate/browse/HHH-2434]] those queries are a bit unnatural.")
45 {{/html}}{{/velocity}}
Jean-Vincent Drean 1.21 46
Vincent Massol 21.1 47 {{code language="none"}}
48 #set($hql = "where year(doc.date) = year(current_date()) and month(doc.date) = month(current_date()) and day(doc.date) = day(current_date()) and hour(doc.date) > (hour(current_time()) - 1) order by doc.date desc")
Vincent Massol 15.1 49 {{/code}}
Jean-Vincent Drean 1.35 50
Vincent Massol 21.1 51 Other examples:
52 * Listing all documents modified during the current day: {{code language="none"}}where year(doc.date) = year(current_date()) and month(doc.date) = month(current_date()) and day(doc.date) > (day(current_date()) - 1) order by doc.date desc{{/code}}
53 * Listing all documents modified during the current week: {{code language="none"}}where year(doc.date) = year(current_date()) and month(doc.date) = month(current_date()) and day(doc.date) > (day(current_date()) - 7) order by doc.date desc{{/code}}
54 * Listing all documents modified during the current month: {{code language="none"}}where year(doc.date) = year(current_date()) and month(doc.date) > (month(current_date()) - 1) order by doc.date desc{{/code}}
Jean-Vincent Drean 1.35 55
Vincent Massol 21.1 56 == Privileged API (##search##: Documents, Objects, Properties, etc) ==
Jean-Vincent Drean 1.3 57
Vincent Massol 21.1 58 {{velocity}}{{html}}
59 #warning("Calls to te privileged API are only executed when the calling page has been saved by a user with Programming Rights. The reason is that search can be used to send dangerous HQL command like update, delete, etc.")
60 {{/html}}{{/velocity}}
Jean-Vincent Drean 1.1 61
Vincent Massol 15.1 62 === Simple Query ===
63
Vincent Massol 21.1 64 {{code language="none"}}
65 #set($hql = "select doc.name from XWikiDocument doc")
66 {{/code}}
Jean-Vincent Drean 1.1 67
Vincent Massol 15.1 68 === Count Query ===
Jean-Vincent Drean 1.19 69
Vincent Massol 21.1 70 {{code language="none"}}
71 #set($results = $xwiki.search("select count(doc) from XWikiDocument doc"))
72 ## Since $xwiki.search is returning a list, we get its first element
73 Count : $results.get(0)
Vincent Massol 15.1 74 {{/code}}
Jean-Vincent Drean 1.19 75
Vincent Massol 15.1 76 === Simple Query with multiple fields ===
77
Vincent Massol 21.1 78 {{code language="none"}}
79 #set($results = $xwiki.search("select doc.name, doc.date from XWikiDocument doc", 5, 0))
Jean-Vincent Drean 1.2 80 #foreach ($row in $results)
81 #foreach ($col in $row)
Vincent Massol 21.1 82 #if ($velocityCount == 1)
83 #set($docName = $col)
84 #elseif ($velocityCount == 2)
85 #set($docDate = $col)
Jean-Vincent Drean 1.2 86 #end
87 #end
Vincent Massol 21.1 88 $docName : $docDate <br/>
Jean-Vincent Drean 1.2 89 #end
Vincent Massol 15.1 90 {{/code}}
Jean-Vincent Drean 1.1 91
Vincent Massol 15.1 92 === Getting objects of a specific class ===
93
Vincent Massol 21.1 94 {{code language="none"}}
95 #set($hql = "select obj.name from BaseObject obj where obj.className='XWiki.XWikiUsers'")
96 {{/code}}
Jean-Vincent Drean 1.1 97
Vincent Massol 15.1 98 === Getting objects' properties ===
99
Vincent Massol 21.1 100 {{code language="none"}}
101 #set($hql = "select obj.name, prop.value from BaseObject obj, StringProperty prop where obj.className='XWiki.XWikiUsers' and prop.id.id=obj.id and prop.name='first_name'")
102 {{/code}}
Jean-Vincent Drean 1.19 103
Vincent Massol 15.1 104 === Getting documents where objects' properties equals some value ===
105
Vincent Massol 21.1 106 {{code language="none"}}
107 #set($hql = "select doc.fullName from XWikiDocument doc, BaseObject obj, StringProperty prop where doc.fullName=obj.name and obj.className='XWiki.XWikiUsers' and prop.id.id=obj.id and prop.name='first_name' and prop.value='Jean-Vincent'")
108 {{/code}}
Jean-Vincent Drean 1.19 109
Vincent Massol 15.1 110 === List users currently editing pages ===
111
Vincent Massol 21.1 112 {{code language="none"}}
113 #set($hql = "select distinct lock.userName from XWikiLock lock")
114 {{/code}}
Jean-Vincent Drean 13.1 115
Vincent Massol 15.1 116 === List attachments of a page ===
117
Vincent Massol 21.1 118 {{code language="none"}}
119 #set($hql = "select att.filename from XWikiAttachment att, XWikiDocument doc where doc.fullName='Main.WebHome' and att.docId=doc.id")
120 {{/code}}
Jean-Vincent Drean 14.1 121
Vincent Massol 21.1 122 == Non-exhaustive list of queryable Object Fields ==
Jean-Vincent Drean 1.19 123
Vincent Massol 15.1 124 === XWikiDocument ===
125
Vincent Massol 21.1 126 * **XWikiDocument.fullName** : full name, including space and page name. Example value: ##Main.WebHome##
127 * XWikiDocument.author : last editor. Example value: ##XWiki.Admin##
128 * XWikiDocument.creator : first editor. Example value: ##XWiki.Admin##
Jean-Vincent Drean 10.1 129
Vincent Massol 15.1 130 === BaseObject ===
Jean-Vincent Drean 10.1 131
Vincent Massol 21.1 132 * **BaseObject.id** : arbitrary unique id of the object. Example value: ##123456789##
133 * BaseObject.className : class. Example value: ##XWiki.XWikiUsers##
Jean-Vincent Drean 10.1 134
Vincent Massol 21.1 135 === *Property (StringProperty, IntegerProperty, etc) ===
Jean-Vincent Drean 10.1 136
Vincent Massol 21.1 137 * **Property.id.id** : unique id of the object the property belongs to. Example value: ##123456789##
138 * Property.name : name of the property. Example value: ##first_name##
139 * Property.value : value. Example value: ##John##
140

Get Connected