1.过程【存储过程】
CREATE [OR REPLACE] PROCEDURE
<procedure name> [(<parameter list>)]
IS|AS
<local variable declaration>
BEGIN
<executable statements>
[EXCEPTION
<exception handlers>]
END; 1.1无参存储过程
写一个存储过程:实现向student表中插入10条记录的功能
create or replace procedure pro_student
is
--声明变量
begin
-- 执行逻辑代码
for i in 950..980 loop
insert into student(id,name) values(i,'asasas');
commit;
end loop;
--异常处理
end; --注意:选中过程代码按齿轮提交并不是执行代码而是编译代码并保存在数据库中
-- 保存在左侧菜单栏中的 procedures目录中
调用存储过程:
1.选中过程名称右键‘测试’选项执行
2.通过plsql块调用 begin
pro_student();--如果没有参数 ()可以省略
end;
1.2 有参存储过程
create or replace procedure pro_student2(
p_id in number,-- 默认就是in 可以省略
p_name in varchar2, --没有被out修饰的参数是常量,不能被改变
p_result out student%rowtype -- 接收返回信息 )
is
begin
select * into p_result from student where id=p_id and name=p_name;
end; declare
v_id student.id%type := '&请输入id';
v_name student.name%type :='&请输入姓名';
v_student student%rowtype;
begin
pro_student2(v_id,v_name,v_student);
dbms_output.put_line(v_student.id);
dbms_output.put_line(v_student.name);
dbms_output.put_line(v_student.sex);
dbms_output.put_line(v_student.birth);
dbms_output.put_line(v_student.address); end; 案例:请根据性别或名字查询相关记录,并把结果 返回来 打印了出来 提示用 sys_refcursor create or replace procedure pro_student3(
v_name in student.name%type,
v_sex in student.sex%type,
mycursor out sys_refcursor
)
is
v_sql varchar2(100);
begin v_sql:='select * from student where 1=1';
if v_name is not null then
v_sql := v_sql || 'name like ''%'||v_name||'%''';
end if;
if v_sex is not null then
v_sql := v_sql || 'sex = '''||v_sex||'''';
end if;
dbms_output.put_line(v_sql);
open mycursor for v_sql;
close mycursor;
end; declare
v_cursor sys_refcursor;
v_name student.name%type:='&请输入姓名';
v_sex student.sex%type:='&请输入性别';
v_student student%rowtype;
begin
pro_student3(v_name,v_sex,v_cursor); loop
fetch v_cursor into v_student;
exit when v_cursor%notfound;
dbms_output.put_line(v_student.id||v_student.name);
end loop;
close v_cursor;
end; 2.函数【方法】:有显示的返回值
CREATE [OR REPLACE] FUNCTION
<function name> [(param1,param2)]
RETURN <datatype> IS|AS
[local declarations]
BEGIN
Executable Statements;
RETURN result;
EXCEPTION
Exception handlers;
END;
写一个方法实现根据班级编号获取班级名称
create or replace function func_class(
f_id number
)return varchar2
is
v_name t_class.cname%type;
begin
select cname into v_name from t_class where cid = f_id;
return v_name; exception
when no_data_found then
dbms_output.put_line('找不到数据');
return null;
when others then
dbms_output.put_line('其他异常');
return null;
end; 调用方法:
1.通过工具测试
2.通过plsql块执行
begin
dbms_output.put_line(func_class(1));
end;
3.通过SQL语句调用【方法中不能有DML操作】
select fun_test1(102) from dual;
select t.*,fun_test1(t.classid) from t_student t

方法和过程的区别:
1.DML相关的操作我们一般都使用存储过程实现
2.特定的公共的功能我们用方法实现
3.方法有显示的返回结果
4.方法中同样的也有 in out 关键字

create or replace package p_student is

  -- Author  : BOBO
-- Created : 2018-08-06 11:29:41
-- Purpose : -- Public type declarations 定义一个类型
--type <TypeName> is <Datatype>;
--type myreftype is ref cursor;
-- Public constant declarations -- 声明一个常量
--<ConstantName> constant <Datatype> := <Value>; -- Public variable declarations
--<VariableName> <Datatype>; -- 声明一个变量 -- Public function and procedure declarations
--function <FunctionName>(<Parameter> <Datatype>) return <Datatype>; procedure insert_student(
p_id t_student.id%type,
p_name t_student.name%type
); function getname(
p_id t_student.id%type
)return varchar2; end p_student; create or replace package body p_student is -- Private type declarations
--type <TypeName> is <Datatype>; -- Private constant declarations
--<ConstantName> constant <Datatype> := <Value>; -- Private variable declarations
--<VariableName> <Datatype>; -- Function and procedure implementations
-- function <FunctionName>(<Parameter> <Datatype>) return <Datatype> is
--<LocalVariable> <Datatype>;
-- begin
--<Statement>;
--return(<Result>);
-- end; --begin
-- Initialization
--<Statement>; procedure insert_student(
p_id t_student.id%type,
p_name t_student.name%type
)is
begin
insert into t_student(id,name)values(seq_t_student.nextval,p_name);
commit;
end; function getname1(
p_id t_student.id%type
)return varchar2
is
v_name t_student.name%type;
begin
select name into v_name from t_student where id = p_id;
return v_name;
end; function getname(
p_id t_student.id%type
)return varchar2
is
v_name t_student.name%type;
begin
select name into v_name from t_student where id = p_id;
return getname1(p_id);
end; end p_student;

不在package中声明,直接在body中定义实现,是为了隐藏方法,同时给内部的其他方法或者存储过程调用

Oracle之子程序(存储过程、方法、包)的更多相关文章

  1. .Net程序员学用Oracle系列(7):视图、函数、存储过程、包

    1.视图 1.1.创建.删除及调用普通视图 1.2.高级视图介绍 2.函数 2.1.系统函数介绍 2.2.创建.删除及调用自定义函数 3.存储过程 3.1.创建.修改及删除存储过程 3.2.调用存储过 ...

  2. .Net程序员学用Oracle系列:视图、函数、存储过程、包

    1.视图 在实际操作过程中,本人发现 Oracle 视图定义有一个缺陷,就是不大方便注释,每次写好的注释执行之后再打开视图定义所有注释就全都没了.后来我发现把注释写到末尾就不会被清除,但这样总感觉乖乖 ...

  3. java通过JDBC连接Oracle并调用存储过程和存储方法

    初始配置:电脑安装oracle 11g(这里也可使是其它版本也可,此教程演示为11g),java环境,eclipse,oracle关于jdbc的jar包. 一,在scott用户下首先要有存储过程和存储 ...

  4. oracle学习笔记(十九) 子程序——存储过程

    子程序--存储过程 我们可以使用子程序来封装一下我们需要的操作,子程序又有存储过程,函数和触发器. 这里先学习存储过程~ 语法 create [or replace] procedure $proce ...

  5. oracle中的存储过程例子

    用了两年Oracle还没写过存储过程,真是十分惭愧,从今天开始学习Oracle存储过程,完全零起点,争取每日一篇学习笔记,可能开始认识的不全面甚至有错误,但坚持下来一定会有收获. . 建立一个存储过程 ...

  6. Dapper完美兼容Oracle,执行存储过程,并返回结果集。

    Dapper完美兼容Oracle,执行存储过程,并返回结果集. 这个问题,困扰了我整整两天. 刚刚用到Dapper的时候,感觉非常牛掰.特别是配合.net 4.0新特性dynamic,让我生成泛型集合 ...

  7. Oracle中执行存储过程call和exec区别

    Oracle中执行存储过程call和exec区别 在sqlplus中这两种方法都可以使用: exec pro_name(参数1..); call pro_name(参数1..); 区别: 1. 但是e ...

  8. Oracle job procedure 存储过程定时任务

    Oracle job procedure 存储过程定时任务 oracle job有定时执行的功能,可以在指定的时间点或每天的某个时间点自行执行任务. 一.查询系统中的job,可以查询视图 --相关视图 ...

  9. Oracle dbms_lock.sleep()存储过程使用技巧-场景-分析-实例

    <Oracle dbms_lock.sleep()存储过程使用技巧>-场景-分析-实例 摘要:今天是2014年3月10日,北京,雾霾,下午组织相关部门开会.会议的结尾一名开发工程师找到了我 ...

随机推荐

  1. Gartner发布最新魔力象限报告,微软领跑数据库市场(编译自TechRepublic)

    知名调研机构Gartner发布了最新的<2015年数据库管理系统魔力象限调研报告>.报告显示,微软.甲骨文和AWS是数据库市场的三大领导厂商. 此份报告对知名的商用以及开源数据库厂商进行了 ...

  2. Mac系统完美配置Cocos2d-x 2.2.3 的Android+IOS双平台环境

    注意:本文的Cocos2d-x的版本是2.2.3,更高版本可能会略有不同,低版本者不建议参考 首先需要配置XCODE环境 下载Cocos2d-x 然后下载Cocos2d-x的整个源码:http://w ...

  3. globalsign代码签名最新步骤

    1.确认gs发的token里边有你的数字证书-需按对方要求步骤提取到 2. 到globalsign.cn上下载数字签名工具:安装后联系支持.要到该工具对应授权文件 3. (如驱动签名)签名工具> ...

  4. xgcom linux下的串口助手

    好用到爆@@! 2.Install: Source code: http://code.google.com/p/xgcom/ svn checkout http://xgcom.googlecode ...

  5. 两天学会css基础(一)

    什么是css?css的作用是什么? CSS 指层叠样式表 (Cascading Style Sheets)主要作用就是给HTML结构添加样式,搭建页面结构,比如设置元素的宽高大小,颜色,位置等等. 学 ...

  6. Angular4 @HostBinding @HostListener

    host属性 @Component({ selector: 'jhi-project', templateUrl: './project.html', styleUrls: [], host: { ' ...

  7. Java基础知识强化之集合框架笔记76:ConcurrentHashMap之 ConcurrentHashMap简介

    1. ConcurrentHashMap简介: ConcurrentHashMap是一个线程安全的Hash Table,它的主要功能是提供了一组和Hashtable功能相同但是线程安全的方法.Conc ...

  8. (八)Linux之挂载命令

    挂载命令 其实挂载在Linux中可以理解为分配盘符的意思.想一下,比如一张光盘插入了Linux系统的 电脑上,要想读取其中的内容,需要做哪些操作呢?首先你要考虑的是这张外来光盘的的数据也是 外来的,如 ...

  9. selenium + python自动化测试unittest框架学习(一)selenium原理及应用

    unittest框架的学习得益于虫师的<selenium+python自动化实践>这一书,该书讲得很详细,大家可以去看下,我也只学到一点点用于工作中,闲暇时记录下自己所学才能更加印象深刻. ...

  10. Monkeyrunner命令

    1.使用Monkeyrunner脚本命令时,需要导入模块才能使用模块的脚本命令,Monkeyrunner的常用模块有 MonkeyRunner,MonkeyDevice,MonkeyImage,Mon ...