-- -- packages/bboard-portlets/sql/bboard-portlets-drop.sql -- -- Drops bboard datasources for portal portlets -- Copyright (C) 2001 Openforce, Inc. -- @author Arjun Sanyal (arjun@openforce.net) -- @creation-date 2001-30-09 -- $Id: dotlrn-portlet-drop.sql,v 1.1.1.1 2001/10/08 20:56:19 oracle 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 = 'bboard-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;