Hi!
When I execute this in SQL, it works fine:
Note 1: The third field ('18-04-2024) is a DATE in SQL.
Note 2: The third field has the format DD-MM-YYYY.
However, when I try to execute with a CallableStatement, it returns ORA-01843: not a valid month:
I don't understand why it returns ORA-01843: not a valid month once the setString is being set with a String and the field is a DATE in SQL, I read it was supposed to work with the setString().
I tried also with setDate() passing a Date as params, but it didn't work also.
Could you help me?