1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 数据库 - 正文

君子好学,自强不息!

如果你在Oracle存储过程(非列表)的实际操作中,你对Oracle存储过程(非列表)有不解之处时,你可以通过以下的文章对其的实际应用与功能有所了解,以下是文章的具体介绍,望你浏览完以下的内容会有所收获。

Oracle存储过程为:

CREATEORREPLACEPROCEDURETESTB(PARA1INVARCHAR2,
PARA2OUTVARCHAR2)AS 
BEGIN 
SELECTINTOPARA2FROMTESTTBWHEREI_ID=PARA1; 
ENDTESTB; 

在java里调用时就用下面的代码:

packagecom.hyq.src; 
publicclassTestProcedureTWO{ 
publicTestProcedureTWO(){ 
} 
publicstaticvoidmain(String[]args){ 
Stringdriver="Oracle.jdbc.driver.OracleDriver"; 
StringstrUrl="jdbc:Oracle:thin:@127.0.0.1:1521:hyq"; 
Statementstmt=null; 
ResultSetrs=null; 
Connectionconn=null; 
try{ 
Class.forName(driver); 
conn=DriverManager.getConnection(strUrl,"hyq","hyq"); 
CallableStatementproc=null; 
proc=conn.prepareCall("{callHYQ.TESTB(?,?)}"); 
proc.setString(1,"100"); 
proc.registerOutParameter(2,Types.VARCHAR); 
proc.execute(); 
StringtestPrint=proc.getString(2); 
System.out.println("=testPrint=is="+testPrint); 
} 
catch(SQLExceptionex2){ 
ex2.printStackTrace(); 
} 
catch(Exceptionex2){ 
ex2.printStackTrace(); 
} 
finally{ 
try{ 
if(rs!=null){ 
rs.close(); 
if(stmt!=null){ 
stmt.close(); 
} 
if(conn!=null){ 
conn.close(); 
} 
} 
} 
catch(SQLExceptionex1){ 
} 
} 
} 
} 
} 

注意,这里的proc.getString(2)中的数值2并非任意的,而是和Oracle存储过程中的out列对应的,如果out是在***个位置,那就是proc.getString(1),如果是第三个位置,就是proc.getString(3),当然也可以同时有多个返回值,那就是再多加几个out参数了。

本文来源:1818IP

本文地址:https://www.1818ip.com/post/11576.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。