建议你先去看看【oracle9i PL/SQL程序设计】一书,很有用的。
其中有关于DBMS_PIPE的内容介绍

解决方案 »

  1.   

    我还要看tofel,某个变态的人要我做的,大家帮忙呀
      

  2.   

    1、使用in类型的参数,如:sp_name(str in string);
    2、可使用函数返回,也可以在过程中使用out类型的参数。
    3、sql里面无法调用存储过程,只能调用函数。
      

  3.   

    sorry DBMS_PIPE 是会话之间的通讯
    你要的应该是:
    DBMS_OUTPUT
    Using DBMS_OUTPUT
    A trigger might want to print out some debugging information. To do this, the trigger would do:DBMS_OUTPUT.PUT_LINE('I got here:'||:new.col||' is the new value'); If you have enabled the DBMS_OUTPUT package, then this PUT_LINE would be buffered, and you could, after executing the statement (presumably some INSERT, DELETE, or UPDATE that caused the trigger to fire), get the line of information back. For example:BEGIN 
     DBMS_OUTPUT.GET_LINE(:buffer, :status); 
    END; 
      

  4.   

    如果表单中的的字段分别是username 和password
    然后是不是这样
    如果用 function 
    用return 字段返回。
    可是比如在 function 里面用select username,password from user where username=[就是这里怎么把表单的字段传递过来],然后我们可以在username里面的字段进行处理吗?得到返回值如果是true就说明检验通过。
    最后在sql语句是不是
    这样select function from user??
    我糊涂,大家帮忙我9点还要听voa
    我可以再开帖加100分
      

  5.   

    我知道有DBMS包可是我在SQL-Plus用过
    问题是他的那个输出能够返回给servlet吗??