网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ORACLE > 正文
Oracle存储过程(增、删、改)写法
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/12/01
下载{$ArticleTitle}原创论文样式

  好久都没有写过Oracle存储过程了,一般写查询语句比较多,自己就试着写了一下插入、删除、修改记录的存储过程。

  插入:

 1 CREATE OR REPLACE Procedure p_insert_t_stu --存储过程名称
 2  (
 3    p_stuid in Number,
 4    p_stuname in Nvarchar2,
 5    p_stusex in Nvarchar2,
 6    p_stuadd in Nvarchar2
 7 )
 8  as
 9  BEGIN
10 insert into t_stu
11 values
12 (p_stuid,p_stuname,p_stusex,p_stuadd);
13 commit;
14 end;

  删除:

 1 CREATE OR REPLACE Procedure p_delete_t_stu --存储过程名称
 2 (
 3    p_stuid in Number,
 4    p_msg Out Nvarchar2
 5 )
 6 Is
 7 flag Integer := 1;
 8 v_stuid Number;
 9 Begin
10 Select flag Into v_stuid From t_stu Where stuid=p_stuid;
11 Delete t_stu
12 Where
13 stuid=p_stuid;
14 commit;
15 If flag=1 Then
16  Begin
17     p_msg:=''删除成功''; 
18  End;
19 End If;
20 Exception 
21   When Others Then
22      p_msg:=Sqlerrm || '','' || ''删除失败'';
23 END;

  修改:

 1 CREATE OR REPLACE Procedure p_update_t_stu --存储过程名称
 2 (
 3    p_stuid in Number,
 4    p_stuname in Nvarchar2,
 5    p_stusex in Nvarchar2,
 6    p_stuadd in Nvarchar2
 7 )
 8 as
 9 BEGIN
10 Update t_stu Set stuname=p_stuname,stusex=p_stusex,stuadd=p_stuadd
11 Where
12 stuid=p_stuid;
13 commit;
14 end;

  如有问题,请指出! 欢迎大家提出宝贵意见~

  出处:http://zhf.cnblogs.com/ 

(责任编辑:admin)

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号