- 浏览: 541799 次
- 性别:
- 来自: 天津
文章分类
- 全部博客 (230)
- java (87)
- c/c++/c# (39)
- ASP.net MVC (4)
- eclipse/visual studio (3)
- tomcat/weblogic/jetty (13)
- linux/unix/windows (20)
- html/javascript/jquery/kendo/bootstrap/layui/vue/react (31)
- hibernate/struts/spring/mybatis/springboot (21)
- lucene/solr/ELK (2)
- shiro (0)
- oracle/sqlserver/mysql/postgresql (23)
- shell/python/ruby (6)
- android (0)
- maven/ant (1)
- freemarker/thymeleaf/velocity (1)
- open source project (41)
- cache/memcached/redis (0)
- nosql/hadoop/hbase/mongodb (0)
- system architecture/dubbo/zookeeper (0)
- software testing (0)
- system optimization (0)
- system security (0)
- tcp/udp/http (2)
- roller/wordpress (2)
- 工具收藏 (8)
- 文摘 (4)
- 生活 (0)
最新评论
-
coconut_zhang:
这个demo 非常完整了,是指下面说的那个html 模版,模版 ...
flying sauser, thymeleaf实现PDF文件下载 -
a93456:
你好,你有完整的demo吗? String template这 ...
flying sauser, thymeleaf实现PDF文件下载 -
yujiaao:
fn 函数循环是没有必要的啊,可以改成
protecte ...
Java 笛卡尔积算法的简单实现 -
安静听歌:
设置了.setUseTemporaryFileDuringWr ...
使用jxl导出大数据量EXCEL时内存溢出的解决办法 -
q280499693:
写的很详细,但是我现在想知道他们是怎么定位log4j.prop ...
关于SLF4J结合Log4j使用时日志输出与指定的log4j.properties不同
《PL/SQL编程》
/*procedural language/sql*/
--1、过程、函数、触发器是pl/sql编写的
--2、过程、函数、触发器是在oracle中的
--3、pl/sql是非常强大的数据库过程语言
--4、过程、函数可以在java程序中调用
--提高效率:优化sql语句或写存储过程
--pl/sql移植性不好
--IDE(Integration Develop Environment)集成开发环境
--命令规则:
--变量(variable) v_
--常量(constant) c_
--指针、游标(cursor) _cursor
--例外、异常(exception) e_
--可定义的变量和常量:
--标量类型:scalar
--复合类型:composite --存放记录、表、嵌套表、varray
--参照类型:reference
--lob(large object)
《PL/SQL 基本语法》
--例:创建存储过程
create or replace procedure pro_add
is
begin
insert into mytest values('韩xx','123');
end;
exec pro_add; --调用
--查看错误信息
show error;
--调用过程
exec 过程(c1,c2,...);
call 过程(c1,c2,...);
--打开/关闭输出选项
set serveroutput on/off
--输入
&
--块结构示意图
declare --定义部分,定义常量、变量、游标、例外、复杂数据类型
begin --执行部分,执行pl/sql语句和sql语句
exception --例外处理部分,处理运行的各种错误
end; --结束
--《实例演示》
declare
v_ival number(4) :=100; --声明并初始化变量
--v_dtm date;
v_dtm syslogs.dtm%type; --取表字段类型
v_content varchar(512);
begin
v_ival := v_ival * 90; --赋值运算
insert into syslogs values(seq_syslogs.nextval,10,sysdate,'v_ival='||v_ival,user);--数据库存储
dbms_output.put_line('v_ival'||v_ival);
select count(*) into v_ival from syslogs;--使用select查询赋值
--select ename,sal into v_name,v_sal from emp where empno=&aa;
insert into syslogs values (seq_syslogs.nextval,10,sysdate,'日志条数='||v_ival,user);
dbms_output.put_line('日志条数'||v_ival);
--获取日志序号==11的日志时间和日志内容
select dtm , content
into v_dtm,v_content
from syslogs
where logid=14;
insert into syslogs values (seq_syslogs.nextval,'10',sysdate,'v_dtm='||v_dtm||'v_content='||v_content,user);
dbms_output.put_line('v_dtm='||v_dtm||'v_content='||v_content);
--修改日志序号=11的日志记录人
update syslogs
set whois='PL/SQL.'||v_ival
where logid = 14;
--delete syslogs where logid=15;
--分支流程控制
if v_ival>50 then
dbms_output.put_line('日志需要清理了~');
else
dbms_output.put_line('日志空间正常!');
end if;
--Loop循环
v_ival :=0;
loop
exit when v_ival>3;
--循环体
v_ival := v_ival+1;
dbms_output.put_line('loop循环:'||v_ival);
end loop;
--While循环
v_ival := 0;
while v_ival < 4
loop
--循环体
v_ival := v_ival+1;
dbms_output.put_line('while循环:'||v_ival);
end loop;
--For循环
for v_count in reverse 0..4 loop --reverse递减
dbms_output.put_line('for循环:'||v_count);
end loop;
commit;--提交事物
end;
select * from syslogs;
《PL/SQL 异常处理》
--PL/SQL异常处理:oracle内置异常,oracle用户自定义异常
declare
v_title logtypes.tid%type;
v_ival number(9,2);
--自定义的异常
ex_lesszero exception ;
begin
--select title into v_title
--from logtypes --; too_many_rows
--where tid = 30 ; --NO_DATA_FOUND 异常
v_ival := 12/-3;
if v_ival < 0 then
--直接抛出异常
--raise ex_lesszero ;
--使用系统存储过程抛出异常
raise_application_error(/*错误代码,-20000~-20999*/-20003,/*异常描述*/'参数不能小于0!');
end if;
commit;
exception
--异常处理代码块
when no_data_found then
dbms_output.put_line('发生系统异常:未找到有效的数据!');
when too_many_rows then
dbms_output.put_line('发生系统异常:查询结果超出预期的一行!');
when ex_lesszero then
dbms_output.put_line('发生用户异常:数值不能为负!'||sqlcode||'异常描述:'||sqlerrm);
when others then --other例如Exception
rollback;
dbms_output.put_line('发生异常!'||sqlcode||'异常的描述:'||sqlerrm);
end;
《PL/SQL 游标的使用》
declare
--游标的声明
cursor myCur is
select tid,title from logtypes ;
--定义接收游标中的数据变量
v_tid logtypes.tid%type;
v_title logtypes.title%type;
--通过记录来接受数据
v_typercd myCur%rowtype ;
begin
--打开游标
open myCur ;
--取游标中的数据
loop
--遍历游标中的下一行数据
fetch myCur into v_tid,v_title ;
--检测是否已经达到最后一行
exit when myCur%notfound ;
--输出游标中的数据
dbms_output.put_line('读取tid='||v_tid||' title='||v_title);
end loop;
--关闭游标
close myCur;
--打开游标
open myCur ;
loop
fetch myCur into v_typercd ;
exit when myCur%notfound ;
dbms_output.put_line('--//读取tid='||v_typercd.tid||' title='||v_typercd.title);
end loop;
--关闭游标
close myCur ;
--for循环游标
for tmp_record in myCur loop
dbms_output.put_line('++//读取tid='||tmp_record.tid||' title='||tmp_record.title);
end loop;
end;
《PL/SQL 存储过程★》
-- 可以声明入参in,out表示出参,但是无返回值。
create or replace procedure prc_writelog(/*日志类型*/ tid in number ,
/*日志内容*/ content in varchar2 ,
/*错误码 */ i_ret out number ,
/*错误描述*/ s_ret out varchar2 )
is
begin
insert into syslogs values (seq_syslogs.nextval , tid ,sysdate ,content ,user);
commit;
i_ret := 1 ;
s_ret := '记录日志成功!' ;
exception
when others then
rollback ;
i_ret := -1 ;
s_ret := '记录日志失败:'||sqlerrm ;
end;
--测试
declare
iRet number(4) ;
sRet varchar2(128) ;
begin
prc_writelog(10,'测试存储过程',iRet,sRet);
dbms_output.put_line('iRet:'||iRet||'sRet'||sRet);
end;
select * from syslogs;
《PL/SQL 触发器》
--触发器 是一种基于数据库特定事件的 由数据库自动执行的pl/sql块
--触发的事件源:database 【启动、停止、用户联机...】
-- 表名【insert/update/delete】
--触发时机 before/after
--语句级、行级(需要知道数据,对数据库运行速度有影响)
create or replace trigger tri_logtypes
after insert or update or delete --在所有的表的事件发生后执行
on logtypes
for each row --行级 (:new , :old)
declare
iret number(4);
sret varchar2(128);
begin
--不要有事物的管理
--:new 新数据 记录型
--:old 原有的数据 记录型
--prc_writelog(10,'触发器执行了!',iret,sret);
if inserting then
insert into syslogs values(seq_syslogs.nextval,10,sysdate,'触发器执行添加数据!',user);
elsif updating then
if :new.title <> :old.title then
raise_application_error(-20001,'不允许修改日志类型名称数据!'); --抛出异常
end if;
insert into syslogs values(seq_syslogs.nextval,10,sysdate,'触发器执行更新数据!',user);
elsif deleting then
raise_application_error(-20001,'不允许删除表中的数据!');
insert into syslogs values(seq_syslogs.nextval,10,sysdate,'触发器执行删除数据!',user);
end if;
end ;
--test!
insert into logtypes values(30,'test log');
delete from logtypes where tid = 30;
update logtypes set title = 'test log' where tid = 30;
select * from syslogs order by dtm desc;
select * from logtypes ;
《案例》
--创建表
create table emp2 (
name varchar2(30),
sal number(8,2)
);
insert into emp2 values('simple',99999);
insert into emp2 values(&a,&b);
--存储过程案例:
--修改员工工资
create or replace procedure pro_input(t_name in varchar2,
t_sal in number)
is
begin
update emp2 set sal = t_sal where name=t_name;
end;
--Test!
declare
begin
pro_input('simple',2000);
end;
select * from emp2;
--函数案例:
create or replace function fun_test(t_name varchar2)
return number is yearSal number(7,2);
begin
select sal*12 into yearSal from emp2 where name = t_name;
return yearSal;
end;
--包案例:
create package pac_test
is --创建一个包pac_test
procedure pro_input(t_name varchar2,t_sal number); --声明该包有一个过程 pro_input
function fun_test(t_name varchar2) return number; --声明该包有一个函数 fun_test
end;
--包体案例:
create package body pac_test
is
procedure pro_input(t_name in varchar2,t_sal in number)
is
begin
update emp2 set sal = t_sal where name=t_name;
end;
function fun_test(t_name varchar2)
return number is yearSal number(7,2);
begin
select sal*12 into yearSal from emp2 where name = t_name;
return yearSal;
end;
end ;
--调用包中的函数或过程
call pac_test.pro_input('summer',1000);
call pac_test.fun_test
select pac_test.fun_test('simple') from dual;
--案例:
select * from emp2;
--下面以输入员工工号,显示雇员姓名、工资、个人所得税
--税率(0.03)。
declare
c_tax_rate number(3,2):=0.03; --常量,税率
--v_name varchar2(30);
v_name emp2.name%type;
--v_sal number(8,2);
v_sal emp2.sal%type;
v_tax_sal number(8,2);
begin
--执行
select name,sal into v_name,v_sal from emp2 where name = &na;
--计算所得税
v_tax_sal:=v_sal*c_tax_rate;
--输出
dbms_output.put_line('姓名:'||v_name||' 工资'||v_sal||' 交税'||v_tax_sal);
end;
--pl/sql记录实例
declare
--定义一个pl/sql记录类型 emp_record_type ,类型包含2个数据,t_name,t_sal
type emp_record_type is record(t_name emp2.name%type,t_sal emp2.sal%type);
--定义一个 record_test 变量,类型是 emp_record_type
record_test emp_record_type;
begin
select name,sal into record_test from emp2 where name = 'simple';
dbms_output.put_line('员工工资:'||record_test.t_sal);
end;
--pl/sql表实例
declare
--定义了一个pl/sql表类型 emp_table_type 该类型是用于存放 emp.name%type元素类型 的数组
-- index by binary_integer 下标是整数
type emp_table_type is table of emp2.name%type index by binary_integer;
--定义一个 table_test 变量
table_test emp_table_type;
begin
--table_test(0)下标为0的元素
select name into table_test(0) from emp2 where name='summer';
dbms_output.put_line('员工:'||table_test(0));
end;
--案例
--显示该部门的所有员工和工资
declare
--定义游标类型 emp_cursor
type emp_cursor is ref cursor;
--定义一个游标变量
cursor_test emp_cursor;
--定义变量
v_name emp2.name%type;
v_sal emp2.sal%type;
begin
--执行
--把cursor_test 和一个select结合
open cursor_test for
select name,sal from emp2;
--循环取出
loop
--fetch取出 游标 给 v_name,v_sal
fetch cursor_test into v_name,v_sal;
--判断工资
if v_sal<1000 then
update emp2 set sal = v_sal+1000 where sal=v_sal;
end if;
--判断cursor_test是否为空
exit when cursor_test%notfound;
dbms_output.put_line('姓名:'||v_name||' 薪水:'||v_sal);
end loop;
end;
select * from emp2;
--《分页》案例:
--建表
drop table book;
create table book(
bookId number(5),
bookName varchar2(50),
publishHouse varchar2(50)
);
--编写过程
create or replace procedure pro_pagination( t_bookId in number,
t_bookName in varchar2,
t_publishHouse in varchar2)
is
begin
insert into book values(t_bookId,t_bookName,t_publishHouse);
end;
--在java中调用
--select * from book;
--insert into book values(11,'流星','蝴蝶');
--commit;
--有输入和输出的存储过程
create or replace procedure pro_pagination2( i_id in number,
o_name out varchar2,
o_publishHouse out varchar2
)
is
begin
select bookName,publishHouse into o_name,o_publishHouse from book where bookId = i_id;
end;
--Test!
declare
err book.bookname%type;
err2 book.publishhouse%type;
begin
pro_pagination2(10,err,err2);
dbms_output.put_line(err||' '||err2);
end;
--返回结果集的过程
--1、创建一个包
create or replace package testpackage
as
type cursor_test is ref cursor;
end testpackage;
--2、建立存储过程
create or replace procedure pro_pagination3(
o_cursor out testpackage.cursor_test)
is
begin
open o_cursor for
select * from book;
end;
--3、如何在java中调用
--Test!
declare
err testpackage.cursor;
begin
pro_pagination2(10,err);
dbms_output.put_line(err);
end;
<Oracle的分页>
select t1.*,rownum rn from (select * from emp) t1;
select t1.*,rownum rn from (select * from emp) t1 where rownum<=10;
--在分页的时候,可以把下面的sql语句当做一个模板使用
select * from (select t1.*,rownum rn from (select * from emp) t1 where rownum<=10) where rn>=6;
--开发一个包
--1、创建一个包
create or replace package testpackage
as
type cursor_test is ref cursor;
end testpackage;
--开始编写分页的过程
create or replace procedure fenye(tableName in varchar2,
pageSize in number, --每页显示记录数
pageNow in number,
myRows out number,--总记录数
myPageCount out number,--总页数
p_cursor out testpackage.cursor_test)
is
--定义sql语句 字符串
v_sql varchar2(1000);
--定义2个整数
v_begin number:=(pageNow-1)*pageSize+1;
v_end number:=pageNow*pageSize;
begin
v_sql:='select * from (select t1.*,rownum rn from (select * from '||tableName||' order by sal) t1 where rownum<='||v_end||') where rn>='||v_begin||'';
--把游标和sql关联
open p_cursor for v_sql;
--计算myRows和myPageCount
--组织一个sql
v_sql:='select count(*) from '||tableName||'';
--执行sql,并把返回的值,赋给myRows
execute immediate v_sql into myRows;
--计算myPageCount
if mod(myRows,pageSize)=0 then
myPageCount:=myRows/pageSize;
else
myPageCount:=myRows/pageSize+1;
end if;
--关闭游标
--close p_cursor;
end;
--使用java测试
发表评论
-
MySQL 5.6 for Windows 解压缩版配置安装
2016-04-22 09:55 451MySQL是一个小巧玲珑但功能强大的数据库, ... -
EXP-××××: 问题处理方法(整理中..)
2011-01-30 10:31 15701.EXP-00091: Exporting question ... -
oracle 10g备份与还原总结
2010-06-18 15:49 1668核心提示:一.总述 1.数据库归档模式: * 非归档模式: ... -
oem 报错“java.lang.Exception: IOException in send……”
2010-04-26 13:47 2252oracle 10g R2 登陆EM管理控制台,题头报错如下: ... -
修改Oracle最大连接数
2010-04-26 08:48 10571、修改Oracle最大连接数的方法 a、以sysd ... -
oracle更改字符集步骤方法
2010-04-26 08:45 1536oracle9204更改字符集步骤方法(WE8ISO8859P ... -
oracle触发器使用笔记
2009-12-01 11:17 1167语法规则: Create [or repla ... -
TKPROF使用学习
2009-11-19 15:16 2678Tkprof工具可用来格式化s ... -
卸载Oracle,重新安装Oracle
2009-08-10 12:51 14521、 开始->设置->控制面板->管理工具->服务 ... -
Oracle中用Rowid查找和删除重复记录
2009-07-30 13:38 1308平时工作中可能会碰到当试图对库表中的某一列或几列创建唯一索引时 ... -
数据库设计多对多关系的几种形态
2009-06-29 13:37 2282前言:多对多关系至少需要3个表,我们把一个表叫做主表,一个叫做 ... -
Oracle中用exp/imp命令快速导入导出数据(整理)
2009-06-11 14:28 2142【用 exp 数 据 导 出】 ... -
Oracle创建自增字段方法-ORACLE SEQUENCE的简单介绍
2009-06-11 14:15 1211先假设有这么一个表: ... -
一些不错的sql语句
2008-12-02 17:34 22091、说明:复制表(只复制结构,源表名:a 新表名:b) ... -
表操作
2009-01-12 11:23 1078新建表:create table [表名]([自动编号字段] ... -
通用数据库存储过程代码--高效分页存储过程
2009-04-04 23:38 1349-- 获取指定页的数据 Create PROCEDURE p ... -
千万数量级分页存储过程
2009-04-04 23:36 1126参数说明: 1.Tables :表名称,视图 2.Primar ... -
存储过程编写经验和优化措施
2009-04-04 23:34 978一、前言:在经过一段 ... -
DBA的SQL Server面试题(数据库面试题)
2009-04-04 23:31 2583Question 1:Can you use a batch ... -
数据库面试(Oracle与Sql专题)
2009-04-04 23:16 1918oracle Certification Program (O ...
相关推荐
### PL/SQL编程基础知识 #### 一、PL/SQL简介 PL/SQL(Procedural Language for SQL)是一种过程化语言,它结合了SQL的数据操纵功能和过程化语言的控制结构,使用户能够灵活地控制数据操作流程。作为Oracle数据库...
pl/sql编程基础教程,内容丰富,适合初学者学习。
【PL/SQL编程】是Oracle数据库中用于数据库管理和应用程序开发的一种高级过程语言,它结合了SQL查询语言的威力和高级编程语言的灵活性。本章详细介绍了PL/SQL的基础知识,帮助初学者快速掌握该语言。 **4.1 PL/SQL...
Oracle PL/SQL编程是Oracle数据库管理系统中的重要组成部分,它是一种过程化语言,允许开发者编写复杂的数据库应用程序。在本次实验中,我们将重点学习PL/SQL的基本语法、控制结构、复合数据类型以及异常处理技术。 ...
PL/SQL编程教程电子书,全册,完整版。。。。
### Oracle PL/SQL编程知识点详解 #### 一、SQL与PL/SQL概述 - **SQL简介**:SQL(Structured Query Language)即结构化查询语言,是数据库管理领域中最广泛使用的标准化语言之一。由IBM最初提出并发展起来,后被...
Oracle PL/SQL 编程及最佳实践 Oracle PL/SQL 是一种高级编程语言,用于开发 Oracle 数据库中的存储过程、函数和触发器。PL/SQL language 提供了强大的编程能力,可以实现复杂的业务逻辑,并且与 Oracle 数据库紧密...
PL/SOL是Oracle特有的编程语言,它不仅具有过程编程语言的基本特征(循环、条件分支等),而且还...本书不仅适合于PL/SQL初学者,而且也适合于有经验的PL/SQL编程人员,本书还可以作为Oracle培训班的教材或者辅助材料。
《Oracle Database 10g PL/SQL编程》一书由Scott Urman、Ron Hardman和Michael McLaughlin共同编写,由McGraw-Hill/Osborne出版,是Oracle数据库编程领域的一部经典之作。该书深入浅出地介绍了Oracle Database 10g...
Oracle PL/SQL编程是Oracle数据库系统中的一个核心组成部分,它扩展了SQL的语法,使得数据库管理及应用程序开发更具灵活性和可编程性。PL/SQL融合了SQL查询和控制流语句,提供了处理复杂业务逻辑的能力。 PL/SQL的...
Oracle PL/SQL编程是Oracle数据库系统中的一个关键组成部分,它是一种强大的过程化编程语言,用于在数据库中执行复杂的逻辑和操作。本指南旨在为初学者提供一个基础的PL/SQL编程入门,帮助他们理解并掌握这个强大的...
### Oracle 实验五 PL/SQL编程 #### 实验目的 本次实验旨在使学习者深入了解PL/SQL编程的基础知识与实际应用。具体目标包括: 1. **掌握PL/SQL的数据类型和基本语法**:理解PL/SQL中不同数据类型的定义与使用方法...
本书《精通Oracle10g PL/SQL编程》为读者提供了一个系统性的学习路径,从基础知识到高级应用,从具体技巧到最佳实践,涵盖了PL/SQL编程的方方面面。通过本书的学习,读者将能够有效地提高Oracle数据库编程的效率和...
《精通Oracle 10g PL/SQL编程》是一本专门针对Oracle 10g版本的PL/SQL编程语言的权威指南书籍。Oracle 10g是甲骨文公司(Oracle Corporation)推出的数据库管理系统(DBMS)的一个重要版本,而PL/SQL是Oracle的存储...
Oracle PL/SQL编程详解是Oracle数据库开发人员必须掌握的技术之一。Oracle PL/SQL是一种用于Oracle数据库系统的程序设计语言,它是SQL语言的扩展,包含了许多能增加程序可读性和模块化的特性。PL/SQL代码被编译成...
根据提供的文件信息,以下是对Oracle 11g PL/SQL编程知识点的详细说明: 标题中的“Oracle 11g PL/SQL编程”指出了文档的主旨,即介绍Oracle数据库的第11g版本中PL/SQL(过程式SQL)编程的技术细节和实践应用。PL/...