Hi,
I am getting below error while running pl/sql code in Pro * C.
ORA-01405: fetched column value is NULL
After going through documentation its suggesting to use NVL or indicator.
Now suppose in below sample query, how can i find out which column needs inidicator / NVl
short *my_ind1;
table1.a (not null)
table1.b null
table2.c null
table2.d not null
Cursor test is
select a, b, c ,d from aa, bb,cc where <some conditions>
Fetch test into :p
:q:my_ind1
:r
:s;
should it mean use NVL /INDICATOR for table2.c field only in above query to prevent ORA-01405 Problem.
thanks
[Updated on: Sun, 02 July 2006 21:47]
Report message to a moderator