Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Forms Bug ?
Forms Version 6.0, Oracle 8i
The value of eht in the db is 'ABCD'
Procedure in Forms
PROCEDURE test IS
l_eht artikel.eht%TYPE;
BEGIN
l_eht := nvl(' ','1234'); -- l_eht = ' ' it's ok
update artikel set eht = nvl(l_eht,eht)
where katalog_id = 8 and artikel_nr = 'TEST';
commit;
END;
Know i Select eht from artikel ... and the value is 'ABCD'
When i run the above procedure as stored procedure the result is ' ' !!
Any suggestion ? Received on Tue Jun 01 1999 - 14:41:55 CDT
![]() |
![]() |