摘要: 存储过程与函数1、存储过程 存储过程的参数 形式参数和实际参数,例如,有如下一个存储过程,该过程接收一个作家代码和一个工资值,将该作家的工资改为接收到的工资值。Java代码 create or replace procedure updateauths( p_authscode auths.author_code%type, p_authssalary auths.salary%type) as begin update auths set salary=p_authssalary where author_code=p_authscode; commit; end updateau... 阅读全文
posted @ 2012-03-06 16:42 山后面是什么 阅读(168) 评论(0) 推荐(0)