摘要: 存储过程的概念 存储过程(Stored Procedure)是一组为了完成特定功能的SQL 语句集,经编译后存储在数据库。中用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。execute create or replace procedure proc01(v_input in number,v_output IN varchar2(10)) IS begin i... 阅读全文
posted @ 2008-06-05 16:50 New Yang Bo Element 阅读(412) 评论(0) 推荐(0) 编辑