Puoi farlo abilitando il controllo degli errori, quindi sollevando un errore.
ACCEPT p_cname PROMPT 'Enter Customer Name: '
WHENEVER SQLERROR EXIT SUCCESS ROLLBACK;
DECLARE
v_count INTEGER;
BEGIN
SELECT COUNT(*) INTO v_count
FROM customer
WHERE cname = '&p_cname';
IF v_count > 0 THEN
raise_application_error( -20100, 'Customer already exists' );
END IF;
END;
/
-- Issue a new WHENEVER statement here if you want different error-handling for
-- the rest of the script
-- Other ACCEPT statements if a match was not found.
Nel WHENEVER
comando, il SUCCESS
parola chiave significa che SQLPlus restituirà un codice di successo alla shell da cui è stato richiamato. Puoi anche usare FAILURE
per restituire un codice di errore generico o altre opzioni per restituire valori specifici.