日期:2014-05-16  浏览次数:20516 次

java调用Oracle函数示例程序
Connection con = DbPool.getConnection();
CallableStatement cstmt = con.prepareCall("{?=call test}");  
cstmt.registerOutParameter(1, Types.VARCHAR);  
cstmt.execute();  
String strValue = cstmt.getString(1);  
System.out.println("The return value is:" + strValue);  
cstmt.close(); 
con.close();