1. 程式人生 > >Oracle學習第五天

Oracle學習第五天

儲存過程

1.儲存過程和儲存函式
指儲存在資料庫中供所有使用者程式呼叫的子程式叫儲存過程、儲存函式。
儲存過程和儲存函式的相同點:完成特點功能的程式
儲存過程和儲存函式的區別:是否用return語句返回值
2.建立和使用儲存過程
用create procedure命令建立儲存過程和儲存函式。
語法:
create [or replace] procedure 過程名(引數列表)as plsql子程式體;
呼叫儲存過程方式:
①exec salhelloworld();

begin 
sayhelloworld();
sayhelloworld();
end;
/


第一個儲存過程:Hello World
create or replace procedure salhelloworld
as
--說明部分
begin
dbms_output.put_line("Hello World");
end;
/
3.帶引數的儲存過程
例:為指定的員工,漲100塊錢的工資;並且列印漲前和漲後的薪水;
create or replace procedure raisesalary(eno in number)
as
--定義變數儲存漲前的薪水
psal emp.sal%type;
begin
--得到員工漲前的薪水
select sal into psal from emp where empno=eno;


--給該員工漲100
update emp set sal=sal+100 where empno=eno;
--需不需要commit?
--注意:一般不在儲存過程或者儲存函式中,commit和rollback。
--列印
dbms_output.put_line("漲前:"||psal||"漲後:"||(psal+100));

end;
/
4.除錯儲存過程

儲存函式

1.簡介
函式(Function)為一命名的儲存程式,可帶引數,並返回銥計算值。
函式和過程結構型別,但必須有一個return子句,用於返回函式值。
2.建立儲存函式的語法
create [or replace] function 函式名(引數列表)
return 函式值型別
as
plsql子程式體

例:查詢某個員工的年收入
create or replace function queryempincome(eno in number)
as
--定義變數儲存員工的薪水和獎金
psal emp.sal%type;
pcomm emp.comm%type;
begin
--得到該員工的月薪和獎金
select sal,comm into psal,pcomm from emp where empno=eno;
--直接返回年收入
return psal*12+nvl(pcomm,0);
end;
/
3.in和out引數
儲存過程和儲存函式都可以有out引數
儲存過程和儲存函式都可以有多個out引數
儲存過程可以通過out引數來實現返回值

原則:如果只有一個返回值,用儲存函式;否則就用儲存過程。
例:查詢某個員工姓名,月薪和職位
create or replace procedure queryempinfo(eno in number,pename out varchar2,psal out number,pjob out varchar2);
as
begin
select ename,sal,empjob into pename,psal,pjob from emp where empno=eno;
end;
/
4.在應用程式中訪問儲存過程和儲存函式

private static String driver ="oracle.jdbc.OracleDriver";
private static String url="jdbc:oracle:thin:@192.168.56.101:1521:orcl";
private static String user="scott";
private static String password="tiger";


//註冊資料庫的驅動
static{
Class.forName(driver);//java的反射機制
//DriverManager.registerDriver(driver);
}
//獲取資料庫連線
publicstatic Connection getConnection(){
return DriverManager.getConnection(url,user,password);
}

//釋放資料庫資源
public static void release(Connection conn,Statement st,ResultSet rs){
if(rs!=null){
rs.close();
}
finally{
rs=null;
}

if(st!=null){
st.close();
}
finally{
st=null;
}
if(conn!=null){
conn.close();
finally{
conn=null;
}
}
}


Class2
String sql="{call queryempinform(?,?,?,?)}";
Connection conn = null;
CallableStatement call = null;
//得到一個連線
conn = JDBCUtils.getConnection();
//通過連線創建出statment
call = conn.prepareCall(sql);
//對於in引數,賦值
call.setInt(1,7839);
//對於out引數,申明
call.registerOutParameter(2,OracleTypes.VARCHAR);
call.registerOutParameter(2,OracleTypes.NUMBER);
call.registerOutParameter(2,OracleTypes.VARCHAR);


//執行呼叫
call.execute();
//取出結果
String name = call.getString(2);
String sal = call.getDouble(3);
String job = call.getString(4);


JDBCUtils.Close();







String sql="{?=call queryempincome(?)}";
Connection conn = null;
CallableStatement call = null;
//得到資料庫連線
conn = JDBCUtils.getConnection();
//基於連線建立statement
call = conn.prepareCall(sql);

//對於輸出引數 申明
call.registerOutParameter(1,OracleType.NUMBER);
//對於輸入引數 賦值
call.setInt(2,7839);
//執行呼叫
call.execute();
//取出年收入的結果
double income = call.getDouble(1);


JDBCUtils.Close();

5.在out引數中使用游標
例:查詢某個部門中所有員工的所有資訊

包頭:
create or replace
paceage mypackage as 
type empcursor is ref cursor;
procedure queryEmpList(dno in number,empList out empcursor);
end mypackage;


包體:
create or replace
package body mypackage as
procedure queryEmpList(dno in number,empList out empcursor) as
begin
--開啟游標
open emplist for select * from emp where deptno=dno;
end queryEmpList;
end mypackage;


6.在應用程式中訪問包中的儲存過程

String sql="{call mypackage.queryEmpList(?,?)}";
Connection conn = null;
CallableStatement call = null;
ResultSet rs = null;
//獲取資料庫連線
conn =. JDBCUtilsgetConnection();
//建立statement
call = conn.prepareCall(sql);


//對於in引數,賦值
call.setInt(1,10);
//對於out引數,申明
call.registerOutParameter(2,OracleType.CURSOR);
//執行呼叫
call.execute();
//取出該部門中所有員工的資訊
rs = ((OracleCallableStatement)call).getCursor(2);
while(rs.next()){
//取出該員工的員工號,姓名
int empno = rs.getInt("empno");
double salary = rs.getDouble("sal");
String job = rs.getString("empjob");
}
JDBCUtils.Close();