iis服务器助手广告广告
返回顶部
首页 > 资讯 > 数据库 >Oracle系列:(33)JDBC访问Oracle的存储过程和存储函数
  • 387
分享到

Oracle系列:(33)JDBC访问Oracle的存储过程和存储函数

2024-04-02 19:04:59 387人浏览 泡泡鱼
摘要

1、存储过程1.1、准备sql-- 定义存储过程 create or replace procedure get_rax(salary 


1、存储过程

1.1、准备sql

-- 定义存储过程
create or replace procedure get_rax(salary in number,rax out number)
as
    --需要交税的钱
    bal number;
begin
    bal := salary - 3500;
    if bal<=1500 then
       rax := bal * 0.03 - 0;
    elsif bal<=4500 then
       rax := bal * 0.1 - 105;
    elsif bal<=9000 then
       rax := bal * 0.2 - 555;
    elsif bal<=35000 then
       rax := bal * 0.25 - 1005;
    elsif bal<=55000 then
       rax := bal * 0.3 - 2755;
    elsif bal<=80000 then
       rax := bal * 0.35 - 5505;
    else
       rax := bal * 0.45 - 13505;
    end if;
end;
/

set serveroutput on;

-- 调用存储过程
declare
    sal number := &salary;
    rax number;
begin
    get_rax(sal,rax);
    dbms_output.put_line(sal || '元工资应该交税' || rax || '元');
end;
/


1.2、准备jar

oracle
ojdbc5.jar
c3p0

c3p0-0.9.1.2.jar

c3p0-config.xml


c3p0-config.xml

<c3p0-config>
    <default-config>
        <property name="jdbcUrl">jdbc:oracle:thin:@127.0.0.1:1521:orcl</property>
        <property name="driverClass">oracle.jdbc.driver.OracleDriver</property>
        <property name="user">scott</property>
        <property name="passWord">tiger</property>
        <property name="initialPoolSize">3</property>
        <property name="maxPoolSize">6</property>
        <property name="maxIdleTime">1000</property>
    </default-config>
</c3p0-config>


1.3、编写工具

JDBCUtils.java

package com.rk.utils;

import java.sql.Connection;

import com.mchange.v2.c3p0.ComboPooledDataSource;

public class JDBCUtils {
    private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
    public static Connection getConnection() throws Exception{
        return dataSource.getConnection();
    }
    
    public static void closeQuietly(AutoCloseable ac){
        if(ac != null){
            try {
                ac.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}


1.4、JDBC程序调用存储过程

CallProc.java

package com.rk.test;

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.Types;

import com.rk.utils.JDBCUtils;


public class CallProc {
    public static void main(String[] args) throws Exception{
        String sql = "{call  get_rax(?,?)}";
        Connection conn = JDBCUtils.getConnection();
        CallableStatement cstmt = conn.prepareCall(sql);
        //为第一个?号设置值,从1开始
        cstmt.setInt(1, 7000);
        //为第二个?注册输出类型
        cstmt.reGISterOutParameter(2, Types.INTEGER);
        //执行调用过程
        cstmt.execute();
        //接收过程的返回值,即第二个?号
        int rax = cstmt.getInt(2);
        //显示
        System.out.println("7000元工资应该交税"+rax+"元");
        JDBCUtils.closeQuietly(cstmt);
        JDBCUtils.closeQuietly(conn);
    }
}


2、存储函数

2.1、准备SQL

--定义函数
create or replace function findEmpNameAndJobAndSal(pempno in number,pjob out varchar2,psal out number) 
return varchar2
as
    pename emp.ename%type;
begin
    select ename,job,sal into pename,pjob,psal from emp where empno = pempno;
    return pename;
end;
/

--调用函数
declare
    pename emp.ename%type;
    pjob   emp.job%type;
    psal   emp.sal%type;
begin
    pename := findEmpNameAndJobAndSal(7788,pjob,psal);
    dbms_output.put_line('7788'||'--'||pename||'--'||pjob||'--'||psal);
end;
/


2.2、JDBC程序调用存储函数

package com.rk.test;

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.Types;

import com.rk.utils.JDBCUtils;


public class CallFunc {
    public static void main(String[] args) throws Exception {
        String sql = "{? = call findEmpNameAndJobAndSal(?,?,?)}";
        Connection conn = JDBCUtils.getConnection();
        CallableStatement cstmt = conn.prepareCall(sql);
        
        //为第一个?注册输出类型
        cstmt.registerOutParameter(1, Types.VARCHAR);
        //为第二个?注入值
        cstmt.setInt(2, 7788);
        //为第三个?注册输出类型
        cstmt.registerOutParameter(3, Types.VARCHAR);
        //为第四个?注册输出类型
        cstmt.registerOutParameter(4, Types.INTEGER);
        
        //执行函数调用
        cstmt.execute();
        
        //分别获取1,3,4占位符的值
        String ename = cstmt.getString(1);
        String job = cstmt.getString(3);
        int sal = cstmt.getInt(4);
        //显示
        System.out.println("7788--"+ename+"--"+job+"--"+sal);
        JDBCUtils.closeQuietly(cstmt);
        JDBCUtils.closeQuietly(conn);
    }
}



您可能感兴趣的文档:

--结束END--

本文标题: Oracle系列:(33)JDBC访问Oracle的存储过程和存储函数

本文链接: https://www.lsjlt.com/news/39714.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • oracle怎么查询当前用户所有的表
    要查询当前用户拥有的所有表,可以使用以下 sql 命令:select * from user_tables; 如何查询当前用户拥有的所有表 要查询当前用户拥有的所有表,可以使...
    99+
    2024-05-15
    oracle
  • oracle怎么备份表中数据
    oracle 表数据备份的方法包括:导出数据 (exp):将表数据导出到外部文件。导入数据 (imp):将导出文件中的数据导入表中。用户管理的备份 (umr):允许用户控制备份和恢复过程...
    99+
    2024-05-15
    oracle
  • oracle怎么做到数据实时备份
    oracle 实时备份通过持续保持数据库和事务日志的副本来实现数据保护,提供快速恢复。实现机制主要包括归档重做日志和 asm 卷管理系统。它最小化数据丢失、加快恢复时间、消除手动备份任务...
    99+
    2024-05-15
    oracle 数据丢失
  • oracle怎么查询所有的表空间
    要查询 oracle 中的所有表空间,可以使用 sql 语句 "select tablespace_name from dba_tablespaces",其中 dba_tabl...
    99+
    2024-05-15
    oracle
  • oracle怎么创建新用户并赋予权限设置
    答案:要创建 oracle 新用户,请执行以下步骤:以具有 create user 权限的用户身份登录;在 sql*plus 窗口中输入 create user identified ...
    99+
    2024-05-15
    oracle
  • oracle怎么建立新用户
    在 oracle 数据库中创建用户的方法:使用 sql*plus 连接数据库;使用 create user 语法创建新用户;根据用户需要授予权限;注销并重新登录以使更改生效。 如何在 ...
    99+
    2024-05-15
    oracle
  • oracle怎么创建新用户并赋予权限密码
    本教程详细介绍了如何使用 oracle 创建一个新用户并授予其权限:创建新用户并设置密码。授予对特定表的读写权限。授予创建序列的权限。根据需要授予其他权限。 如何使用 Oracle 创...
    99+
    2024-05-15
    oracle
  • oracle怎么查询时间段内的数据记录表
    在 oracle 数据库中查询指定时间段内的数据记录表,可以使用 between 操作符,用于比较日期或时间的范围。语法:select * from table_name wh...
    99+
    2024-05-15
    oracle
  • oracle怎么查看表的分区
    问题:如何查看 oracle 表的分区?步骤:查询数据字典视图 all_tab_partitions,指定表名。结果显示分区名称、上边界值和下边界值。 如何查看 Oracle 表的分区...
    99+
    2024-05-15
    oracle
  • oracle怎么导入dump文件
    要导入 dump 文件,请先停止 oracle 服务,然后使用 impdp 命令。步骤包括:停止 oracle 数据库服务。导航到 oracle 数据泵工具目录。使用 impdp 命令导...
    99+
    2024-05-15
    oracle
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作