Home Database Mysql Tutorial Oracle存储过程

Oracle存储过程

Jun 07, 2016 pm 03:25 PM
oracle storage transfer process

3、在Oracle中对存储过程的调用 (1)过程调用方式一 Sql代码 declare realsalemp.sal%type; realname varchar (40); realjob varchar (40); begin //过程调用开始 realsal:=1100; realname:= '' ; realjob:= 'CLERK' ; runbyparmeters(realsal,realname,rea

3、在Oracle中对存储过程的调用 

(1)过程调用方式一

Sql代码  Oracle存储过程

  1. declare  
  2.       realsal emp.sal%type;  
  3.       realname varchar(40);  
  4.       realjob varchar(40);  
  5. begin   //过程调用开始  
  6.       realsal:=1100;  
  7.       realname:='';  
  8.       realjob:='CLERK';  
  9.       runbyparmeters(realsal,realname,realjob);--必须按顺序  
  10.       DBMS_OUTPUT.PUT_LINE(REALNAME||'   '||REALJOB);  
  11. END;  //过程调用结束  

 

(2)过程调用方式二

Sql代码  Oracle存储过程

  1. declare  
  2.      realsal emp.sal%type;  
  3.      realname varchar(40);  
  4.      realjob varchar(40);  
  5. begin    //过程调用开始  
  6.      realsal:=1100;  
  7.      realname:='';  
  8.      realjob:='CLERK';  
  9.      --指定值对应变量顺序可变  
  10.      runbyparmeters(sname=>realname,isal=>realsal,sjob=>realjob);           
  11.     DBMS_OUTPUT.PUT_LINE(REALNAME||'   '||REALJOB);  
  12. END;  //过程调用结束    

 

(3)过程调用方式三(SQL命令行方式下)

Sql代码  Oracle存储过程

  1. 1、SQL>exec  proc_emp('参数1','参数2');//无返回值过程调用  
  2. 2、SQL>var vsal number  
  3.      SQL> exec proc_emp ('参数1',:vsal);// 有返回值过程调用  
  4.       或者:call proc_emp ('参数1',:vsal);// 有返回值过程调用  

 

4、JAVA调用Oracle存储过程

 

(1)不带输出参数情况,过程名称为pro1,参数个数1个,数据类型为整形数据

Java代码  Oracle存储过程

  1. import  java.sql. * ;   
  2.  public   class  ProcedureNoArgs{      
  3.      public   static   void  main(String args[])  throws  Exception{   
  4.          //加载Oracle驱动    
  5.          DriverManager.registerDriver( new  oracle.jdbc.driver.OracleDriver());   
  6.          //获得Oracle数据库连接    
  7.          Connection conn = DriverManager.getConnection  
  8.           ("jdbc:oracle:thin:@MyDbComputerNameOrIP:1521:ORCL", sUsr, sPwd " );  
  9.          //创建存储过程的对象    
  10.          CallableStatement c = conn.divpareCall( " {call pro1(?)} " );        
  11.          //给Oracle存储过程的参数设置值 ,将第一个参数的值设置成188    
  12.           c.setInt( 1 , 188 );        
  13.          // 执行Oracle存储过程    
  14.           c.execute();   
  15.           conn.close();   
  16.      }    
  17. }  

 

(2)带输出参数的情况,过程名称为pro2,参数个数2个,数据类型为整形数据,返回值为整形类型。

Java代码  Oracle存储过程

  1. import java.sql.*;   
  2. public class ProcedureWithArgs {     
  3.     public static void main(String args[]) throws Exception{       
  4.        //加载Oracle驱动   
  5.        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());   
  6.        //获得Oracle数据库连接   
  7.        Connection conn = DriverManager.getConnection  
  8.        ("jdbc:oracle:thin:@MyDbComputerNameOrIP:1521:ORCL", sUsr, sPwd ");   
  9.        //创建Oracle存储过程的对象,调用存储过程   
  10.        CallableStatement c=conn.divpareCall("{call pro2(?,?)}");    
  11.        //给Oracle存储过程的参数设置值 ,将第一个参数的值设置成188   
  12.        c.setInt(1,188);   
  13.        //注册存储过程的第二个参数   
  14.        c.registerOutParameter(2,java.sql.Types.INTEGER);      
  15.        c.execute(); //执行Oracle存储过程   
  16.        //得到存储过程的输出参数值并打印出来  
  17.        System.out.println (c.getInt(2));   
  18.        conn.close();   
  19.     }   
  20. }    

 

二、 函数


1、基本语法规则

 

Sql代码  Oracle存储过程

  1. create or replace function (Name in type, Name in type, ...)   
  2.     return number   
  3.   is  
  4.     Result number;  
  5.  begin    
  6.     return (Result);  
  7.  end ;  

 

2、具体事例(查询出empno=7935的sal值)

Sql代码  Oracle存储过程

  1. create or replace function ret_emp_sal(v_ename varchar2)  
  2. return number  
  3.  is  
  4. v_sal number(7,2);  
  5.  begin  
  6. select nvl(sal,0) into v_sal from emp where lower(ename)=lower(v_ename);  
  7. return v_sal;  
  8.  end;  

 

3、函数调用:

Sql代码  Oracle存储过程

  1. SQL> var vsla number  
  2. SQL> call ret_emp_sal('7935'into :vsal;  

 

4、与存储过程的区别

(1)返回值的区别,函数有1个返回值,而存储过程是通过参数返回的,可以有多个或者没有
(2)调用的区别,函数可以在查询语句中直接调用,而存储过程必须单独调用.
(3)使用场景的区别,函数一般情况下是用来计算并返回一个计算结果
 而存储过程一般是用来完成特定的数据操作(比如修改、插入数据库表或执行某些DDL语句等等)

 

三、包
    包用于组合逻辑相关的过程和函数,它由包规范和包体两个部分组成。包规范用于定义公用的常量、变量、过程
和函数,创建包规范可以使用CREATE PACKAGE命令,创建包体可以使用CREATE PACKAGE BODY.


1、创建包规范

Sql代码  Oracle存储过程

  1. create package emp_pkg is  
  2.     procedure emp_update_ename(v_empno varchar2,v_ename varchar2);  
  3.     function emp_get_sal(v_empno varchar2) return number;  
  4. end;  

 

2、创建包体

Sql代码  Oracle存储过程

  1. create or replace package body emp_pkg  
  2. is  
  3.     // 存储过程  
  4. procedure emp_update_ename  
  5. (  
  6.     v_empno varchar2,  
  7.     v_ename varchar2  
  8. )  
  9. is  
  10.     vename varchar2(32);  
  11. begin   
  12.     update emp set ename=v_ename where empno=v_empno;  
  13.     commit;  
  14.     select ename into vename from emp where empno=v_empno;     
  15.     dbms_output.put_line('雇员名称:'||vename);      
  16. end;  
  17.    // 函数  
  18.    function emp_get_sal  
  19.    (  
  20.         v_empno varchar2  
  21.    )  
  22.    return number is  
  23.     vsal number(7,2);  
  24.    begin  
  25.     select sal into vsal from emp where empno=v_empno;  
  26.    return vsal;  
  27.    end;  
  28. nd;  

 

3、包调用
   在没有创建包规范就创建包体,会失败,要使用包,必须先创建包规范,然后在创建包体。
当要调用包的过程和函数时,在过程和函数的名称前加上包名作为前缀(包名.子程序名称),
而如果要访问其他方案的包时需要在包的名称前加上方案的名称(方案名称.包名.子程序名称)。


(1)调用包函数

Sql代码  Oracle存储过程

  1. SQL> var vsla number  
  2. SQL> call emp_pkg.emp_get_sal('7935'into :vsal;  

 

(2)调用包存储过程

Sql代码  Oracle存储过程

  1. SQL> exec emp_pkg.emp_update_ename('7935','helong');  


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Function to calculate the number of days between two dates in oracle Function to calculate the number of days between two dates in oracle May 08, 2024 pm 07:45 PM

The function in Oracle to calculate the number of days between two dates is DATEDIFF(). The specific usage is as follows: Specify the time interval unit: interval (such as day, month, year) Specify two date values: date1 and date2DATEDIFF(interval, date1, date2) Return the difference in days

How long will Oracle database logs be kept? How long will Oracle database logs be kept? May 10, 2024 am 03:27 AM

The retention period of Oracle database logs depends on the log type and configuration, including: Redo logs: determined by the maximum size configured with the "LOG_ARCHIVE_DEST" parameter. Archived redo logs: Determined by the maximum size configured by the "DB_RECOVERY_FILE_DEST_SIZE" parameter. Online redo logs: not archived, lost when the database is restarted, and the retention period is consistent with the instance running time. Audit log: Configured by the "AUDIT_TRAIL" parameter, retained for 30 days by default.

The order of the oracle database startup steps is The order of the oracle database startup steps is May 10, 2024 am 01:48 AM

The Oracle database startup sequence is: 1. Check the preconditions; 2. Start the listener; 3. Start the database instance; 4. Wait for the database to open; 5. Connect to the database; 6. Verify the database status; 7. Enable the service (if necessary ); 8. Test the connection.

How to use interval in oracle How to use interval in oracle May 08, 2024 pm 07:54 PM

The INTERVAL data type in Oracle is used to represent time intervals. The syntax is INTERVAL <precision> <unit>. You can use addition, subtraction, multiplication and division operations to operate INTERVAL, which is suitable for scenarios such as storing time data and calculating date differences.

How much memory does oracle require? How much memory does oracle require? May 10, 2024 am 04:12 AM

The amount of memory required by Oracle depends on database size, activity level, and required performance level: for storing data buffers, index buffers, executing SQL statements, and managing the data dictionary cache. The exact amount is affected by database size, activity level, and required performance level. Best practices include setting the appropriate SGA size, sizing SGA components, using AMM, and monitoring memory usage.

How to see the number of occurrences of a certain character in Oracle How to see the number of occurrences of a certain character in Oracle May 09, 2024 pm 09:33 PM

To find the number of occurrences of a character in Oracle, perform the following steps: Get the total length of a string; Get the length of the substring in which a character occurs; Count the number of occurrences of a character by subtracting the substring length from the total length.

Oracle database server hardware configuration requirements Oracle database server hardware configuration requirements May 10, 2024 am 04:00 AM

Oracle database server hardware configuration requirements: Processor: multi-core, with a main frequency of at least 2.5 GHz. For large databases, 32 cores or more are recommended. Memory: At least 8GB for small databases, 16-64GB for medium sizes, up to 512GB or more for large databases or heavy workloads. Storage: SSD or NVMe disks, RAID arrays for redundancy and performance. Network: High-speed network (10GbE or higher), dedicated network card, low-latency network. Others: Stable power supply, redundant components, compatible operating system and software, heat dissipation and cooling system.

How to replace string in oracle How to replace string in oracle May 08, 2024 pm 07:24 PM

The method of replacing strings in Oracle is to use the REPLACE function. The syntax of this function is: REPLACE(string, search_string, replace_string). Usage steps: 1. Identify the substring to be replaced; 2. Determine the new string to replace the substring; 3. Use the REPLACE function to replace. Advanced usage includes: multiple replacements, case sensitivity, special character replacement, etc.

See all articles