notification-procs-oracle.xql
DB Query file
Related Files
- packages/notifications/tcl/notification-procs.xql
- packages/notifications/tcl/notification-procs.tcl
- packages/notifications/tcl/notification-procs-postgresql.xql
- packages/notifications/tcl/notification-procs-oracle.xql
[ hide source ] | [ make this the default ]
File Contents
<?xml version="1.0"?>
<queryset>
<rdbms><type>oracle</type><version>8.1.6</version></rdbms>
<fullquery name="notification::delete.delete_notification">
<querytext>
declare begin
notification.del(:notification_id);
end;
</querytext>
</fullquery>
<fullquery name="notification::new.update_message">
<querytext>
update notifications
set notif_html = empty_clob(),
notif_text = empty_clob()
where notification_id = :notification_id
returning notif_html, notif_text into :1, :2
</querytext>
</fullquery>
</queryset>