Hi,
I am just testing my forms 6 app against a new 9i database (works fine on 8i).
I don't get far - the following simple proc
causes a ORA-24365 error (error in conversion of a multi-byte character)
This works OK in 8i, plus works OK in SQL*PLUS in 9i - so why does Forms not like it in 9i?
any ideas would be great !
by the way, what the hell is a multi-byte character anyway and why is it being converted !
Thanks
Rob
PROCEDURE rob IS
v_username varchar2(1000);
BEGIN
SELECT user
INTO v_username
FROM dual;
end;
I am just testing my forms 6 app against a new 9i database (works fine on 8i).
I don't get far - the following simple proc
causes a ORA-24365 error (error in conversion of a multi-byte character)
This works OK in 8i, plus works OK in SQL*PLUS in 9i - so why does Forms not like it in 9i?
any ideas would be great !
by the way, what the hell is a multi-byte character anyway and why is it being converted !
Thanks
Rob
PROCEDURE rob IS
v_username varchar2(1000);
BEGIN
SELECT user
INTO v_username
FROM dual;
end;