blob: 5980b274b4a7b60f6d23baebe17429fe330257bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0" encoding="utf-8" ?>
<sqlMapConfig>
<select id="getEvents" resultClass="Entry">
<![CDATA[
SELECT * FROM entries
WHERE end_date >= #date_from# AND begin_date <= #date_to#
AND $calendar_clause$
ORDER BY begin_date ASC;
]]>
</select>
</sqlMapConfig>
|