如何使用url

时间:2016-08-06 18:12:52

标签: sql oracle notepad++

我创建了一个简单的程序并存储在我的sql文件夹中。我用命令@ demo.sql运行这个脚本,它说程序已创建。 现在我想使用url运行此脚本,但我不知道这个脚本的URL是什么。

此脚本位于此目录中。

enter image description here

这是我的剧本

             CREATE OR REPLACE PROCEDURE demo AS
             l_user varchar2(30);
             BEGIN
             select USER into l_user from dual;
             htp.htmlOpen;
             htp.headOpen;
             htp.title('A Very Very Simple Example');
             htp.headClose;
             htp.bodyOpen;
             htp.line;
             htp.header(1,'Simple Example');
             htp.line;
             htp.paragraph;
             htp.print('Today''s date is:  ' ||  to_char(sysdate,     'DD/MM/YYYY'));
             htp.br;
             htp.print('Today''s day  is:  ' ||  to_char(sysdate, 'DAY'));
             htp.paragraph;
             htp.print('Ordinary <em>tags</em> can be used in the strings that we send.');
             htp.print('Your Oracle USERID is ' || l_user);
             htp.line;
             htp.address('Raj Sunderraman');
             htp.bodyClose;
             htp.htmlClose;
             EXCEPTION
             When others Then
             htp.print(SQLERRM);
             htp.bodyClose;
             htp.htmlClose;
             END;
             /

0 个答案:

没有答案