Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: DBMS_SQL
James,
Klaus told you what to do - you shouldn't bother with DBMS_SQL when you have EXECUTE IMMEDIATE, but if you still want to know why this wasn't work:
v_passwd := '3'; -- This won't work too: -- Password must start with a -- alphabetic character unless -- it is surrounded by double -- quotation marks: '"3"';v_user := 'FF1';
DBMS_SQL.PARSE(v_cursor_id, v_stmt,
DBMS_SQL.NATIVE);
-- And you do not need these anymore:
v_dummy := DBMS_SQL.EXECUTE(v_cursor_id); DBMS_SQL.CLOSE_CURSOR(v_cursor_id);
Regards,
Dejan
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Thu Jul 13 2000 - 00:00:00 CDT
![]() |
![]() |