calendar-procs.xql
DB Query file
Related Files
- packages/calendar/tcl/calendar-procs.xql
- packages/calendar/tcl/calendar-procs.tcl
- packages/calendar/tcl/calendar-procs-postgresql.xql
- packages/calendar/tcl/calendar-procs-oracle.xql
[ hide source ] | [ make this the default ]
File Contents
<?xml version="1.0"?>
<queryset>
<fullquery name="calendar::rename.rename_calendar">
<querytext>
update calendars
set calendar_name = :calendar_name
where calendar_id = :calendar_id
</querytext>
</fullquery>
<fullquery name="calendar::have_private_p.get_calendar_info">
<querytext>
select calendar_id
from calendars
where owner_id = :party_id
and private_p = 't'
</querytext>
</fullquery>
<fullquery name="calendar::have_private_p.get_calendar_info_calendar_id_list">
<querytext>
select calendar_id
from calendars
where owner_id = :party_id
and private_p = 't'
and calendar_id in ([ns_dbquotelist $calendar_id_list])
</querytext>
</fullquery>
<fullquery name="calendar::get_item_types.select_item_types">
<querytext>
select type, item_type_id from cal_item_types
where calendar_id= :calendar_id
</querytext>
</fullquery>
<fullquery name="calendar::item_type_new.insert_item_type">
<querytext>
insert into cal_item_types
(item_type_id, calendar_id, type)
values
(:item_type_id, :calendar_id, :type)
</querytext>
</fullquery>
<fullquery name="calendar::item_type_delete.reset_item_types">
<querytext>
update cal_items
set item_type_id= NULL
where item_type_id = :item_type_id
and on_which_calendar= :calendar_id
</querytext>
</fullquery>
<fullquery name="calendar::item_type_delete.delete_item_type">
<querytext>
delete from cal_item_types where item_type_id= :item_type_id
and calendar_id= :calendar_id
</querytext>
</fullquery>
<fullquery name="calendar::name.get_calendar_name">
<querytext>
select calendar_name
from calendars
where calendar_id = :calendar_id
</querytext>
</fullquery>
<fullquery name="calendar::get.select_calendar">
<querytext>
select calendar_id,
calendar_name,
private_p,
owner_id,
package_id
from calendars
where calendar_id = :calendar_id
</querytext>
</fullquery>
</queryset>