Oracle CHAR(1) mapping as Input
Hello,
Friends, I am having difficulty in mapping a column - CHAR(1) which I need as input for a stored procedure.
I have tried various combinations.
jdbcType = CHAR, Javatype= java.lang.Character - Throws null pointer exception.
jdbcType = CHAR, Javatype= java.lang.String - Does not work
jdbcType = VARCHAR, Javatype= java.lang.String - Does not work
Any help is highly appreciated.
Thanks in advance.