DrSeussFreak
Programmer
How do I put a PL/SQL block into JavaScript.
Using JavaScript, I need that when a link is clicked, the following PL/SQL block is executed.
Using JavaScript, I need that when a link is clicked, the following PL/SQL block is executed.
Code:
declare
begin
execute immediate 'ALTER SYSTEM SET ENCRYPTION WALLET CLOSE';
commit;
end;