Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PL/SQL block in JavaScript

Status
Not open for further replies.

DrSeussFreak

Programmer
Feb 16, 2007
149
US
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.

Code:
declare
begin
execute immediate 'ALTER SYSTEM SET ENCRYPTION WALLET CLOSE';
commit;
end;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top