Ci sono molte eccezioni che possono essere generate da TO_DATE
funzione. Esempi:
- ORA-01843 - Valore del mese non valido
- ORA-01847 - Valore del giorno non valido
- ORA-01830 - l'immagine in formato data termina prima di convertire l'intera stringa di input
- ...
Puoi catturarli come nell'esempio seguente (con una sola eccezione):
Create or Replace Procedure A1SF_TESTDATE
(
pDateStr Varchar2
-- you must do this for every oracle exception number which will you catch
bad_month EXCEPTION;
PRAGMA EXCEPTION_INIT (bad_month, -01843);
)As
tDate Date;
Begin
tdate := TO_DATE(pDateStr, 'yyyymmdd');
dbms_output.put_line(tdate);
Exception
When bad_month Then
dbms_output.put_line('The format provided is incorrect');
End;
Ma per questo devi definire n pragma!
La soluzione più semplice, che preferisco, è:
Create or Replace Procedure A1SF_TESTDATE
(
pDateStr Varchar2
)As
tDate Date;
Begin
tdate := TO_DATE(pDateStr, 'yyyymmdd');
dbms_output.put_line(tdate);
Exception
-- every exception will be catched
When others Then
dbms_output.put_line('The format provided is incorrect! Because: ' || SQLERRM);
End;
Un possibile messaggio per SQLERRM
è ORA-01847: day of month must be between 1 and last day of month
.