程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> DB2數據庫調用存儲過程的方法及實例介紹

DB2數據庫調用存儲過程的方法及實例介紹

編輯:DB2教程

一、對存儲過程的調用分三部分

1.連接(與數據庫建立連接)

  1. Class.forName("COM.ibm.db2.jdbc.Net.DB2Driver").newInstance();  
  2.  
  3. Connection con=DriverManager.getConnection(url,user,passWord); 

2.注冊輸出參數

  1. cs.registerOutParameter (3, Types.INTEGER); 

3.調用存儲過程:

  1. CallableStatement cs=con.prepareCall("{call store_name(參數,參數,參數)}"); 

二、調用舉例:

  1. import Java.Net.URL;  
  2.  
  3. import Java.sql.*;  
  4.  
  5. class test2  
  6.  
  7. {  
  8.  
  9. public static void main(String args[])  
  10.  
  11. {  
  12.  
  13. String url = "jdbc:db2://wellhope/sample";  
  14.  
  15. String user="db2admin";  
  16.  
  17. String passWord="db2admin";  
  18.  
  19. try  
  20.  
  21. {  
  22.  
  23. Class.forName("COM.ibm.db2.jdbc.Net.DB2Driver").newInstance();  
  24.  
  25. //與數據庫建立連接  
  26.  
  27. Connection con=DriverManager.getConnection(url,user,passWord);  
  28.  
  29. checkForWarning(con.getWarnings());  
  30.  
  31. DatabaseMetaData dma=con.getMetaData();  
  32.  
  33. String str="This is a string";  
  34.  
  35. //int hashcode=str.hashCode();  
  36.  
  37. //System.out.println("Hashcode   "+hashcode);  
  38.  
  39. //創建Statement對象,用於執行SQL語句  
  40.  
  41. Statement stmt=con.createStatement();  
  42.  
  43. //創建CallableStatement對象,用於執行存儲過程  
  44.  
  45. CallableStatement cs=con.prepareCall("{call PRO_YHDL1(?,?,?)}");  
  46.  
  47. //注冊輸出參數  
  48.  
  49. cs.registerOutParameter (3, Types.INTEGER);  
  50.  
  51. int result = 0;  
  52.  
  53. cs.setString(1,"123");  
  54.  
  55. cs.setString(2,"123");  
  56.  
  57. cs.execute();  
  58.  
  59. result = cs.getInt (3);  
  60.  
  61. dispResultSet(result);  
  62.  
  63. cs.close();  
  64.  
  65. con.close();  
  66.  
  67. }  
  68.  
  69. catch(SQLException ex)  
  70.  
  71. {  
  72.  
  73. System.out.println(" * * * SQLException caught * * * ");  
  74.  
  75. while(ex!=null)  
  76.  
  77. {  
  78.  
  79. System.out.println("SQLState: "+ex.getSQLState());  
  80.  
  81. System.out.println("Message: "+ex.getMessage());  
  82.  
  83. System.out.println("Vendor: "+ex.getErrorCode());  
  84.  
  85. exex=ex.getNextException();  
  86.  
  87. System.out.println("");  
  88.  
  89. }  
  90.  
  91. }     
  92.  
  93. catch(Java.lang.Exception ex)  
  94.  
  95. {      
  96.  
  97. ex.printStackTrace();  
  98.  
  99. }  
  100.  

三、存儲過程舉例:

Pro_yhdl1是一個存儲過程,它的功能是從數據庫表YHDL中取出PWD:

  1. import Java.sql.*;                    
  2.  
  3. public class Pro_yhdl1  
  4.  
  5. {  
  6.  
  7. public static void pro_yhdl1 ( String m_id,  
  8.  
  9. String m_pwd,  
  10.  
  11. int[] result ) throws SQLException, Exception  
  12.  
  13. {  
  14.  
  15. // Get connection to the database  
  16.  
  17. Connection con = DriverManager.getConnection("jdbc:default:connection");  
  18.  
  19. PreparedStatement stmt = null;  
  20.  
  21. ResultSet rs = null;  
  22.  
  23. String sql;  
  24.  
  25. String m_passWord="";  
  26.  
  27. sql = "SELECT" 
  28.  
  29. + "       DB2ADMIN.YHDL.PWD"  
  30.  
  31. + " FROM"  
  32.  
  33. + "    DB2ADMIN.YHDL"  
  34.  
  35. + " WHERE"  
  36.  
  37. + "    ("  
  38.  
  39. + "       ( "  
  40.  
  41. + "          DB2ADMIN.YHDL.ID = '"+m_id.trim()+"'"  
  42.  
  43. + "       )"  
  44.  
  45. + "    )";  
  46.  
  47. stmt = con.prepareStatement( sql );  
  48.  
  49. rs = stmt.executeQuery();  
  50.  
  51. // Access query results  
  52.  
  53. while (rs.next())  
  54.  
  55. {  
  56.  
  57. m_passWord=rs.getString(1);  
  58.  
  59. m_passWordm_passWord=m_passWord.trim();  
  60.  
  61. if (rs.wasNull())  
  62.  
  63. System.out.print("NULL");  
  64.  
  65. else  
  66.  
  67. System.out.print(m_passWord);  
  68.  
  69. }  
  70.  
  71. if(m_passWord.equals(m_pwd.trim()))  
  72.  
  73. {  
  74.  
  75. result[0] =1;  
  76.  
  77. }  
  78.  
  79. else  
  80.  
  81. {  
  82.  
  83. result[0] =0;  
  84.  
  85. }  
  86.  
  87. // close open resources  
  88.  
  89. if (rs != null) rs.close();  
  90.  
  91. if (stmt != null) stmt.close();  
  92.  
  93. if (con != null) con.close();  
  94.  
  95. // set return parameter  
  96.  
  97. //result[0] = result[0];  
  98.  
  99. }  
  100.  

關於DB2數據庫調用存儲過程的知識就介紹到這裡了,希望本次的介紹能夠對您有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved