-- -- Copyright (C) 2001, 2002 MIT -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- /wps-portlet/sql/oracle/wps-portlet-drop.sql -- -- Drops wps portlet -- Copyright (C) 2003 MIT -- @author Rocael Hernandez (roc@viaro.net) -- @creation-date 2003-05-24 -- $Id: wps-portlet-drop.sql,v 1.1.1.1 2003/09/25 16:36:54 rocaelh Exp $ -- This is free software distributed under the terms of the GNU Public -- License version 2 or higher. Full text of the license is available -- from the GNU Project: http://www.fsf.org/copyleft/gpl.html declare ds_id portal_datasources.datasource_id%TYPE; begin begin select datasource_id into ds_id from portal_datasources where name = 'wps_portlet'; exception when no_data_found then ds_id := null; end; if ds_id is not null then portal_datasource.delete(ds_id); end if; end; / show errors; declare foo integer; begin -- drop the hooks foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'GetMyName' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'GetPrettyName' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'Link' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'AddSelfToPage' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'Show' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'Edit' ); foo := acs_sc_impl.delete_alias ( 'portal_datasource', 'wps_portlet', 'RemoveSelfFromPage' ); -- Drop the binding acs_sc_binding.delete ( contract_name => 'portal_datasource', impl_name => 'wps_portlet' ); -- drop the impl foo := acs_sc_impl.delete ( 'portal_datasource', 'wps_portlet' ); end; / show errors