熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

在Java中調用Oracle的過程和函數

2022-06-13   來源: Java核心技術 

  內容或簡介
  
  /**
  
  調用數據庫裡的一個函數
  
  一個函數本質上一個返回一個結果的存儲過程這個例子示范了怎麼調用有inout和in/out參數的函數
  
  ***********************************/
  CallableStatement cs;
  try {
  // 調用一個沒有參數的函數; 函數返回 a VARCHAR
  // 預處理callable語句
  
  cs = connectionprepareCall({? = call myfunc});
  
  // 注冊返回值類型
  csregisterOutParameter( i);
  
  // Execute and retrieve the returned value
  csexecute();
  String retValue = csgetString();
  
  // 調用有一個in參數的函數; the function returns a VARCHAR
  cs = connectionprepareCall({? = call myfuncin(?)});
  
  // Register the type of the return value
  csregisterOutParameter( TypesVARCHAR);
  
  // Set the value for the IN parameter
  cssetString( a string);
  
  // Execute and retrieve the returned value
  csexecute();
  retValue = csgetString();
  
  // 調用有一個out參數的函數; the function returns a VARCHAR
  cs = connectionprepareCall({? = call myfuncout(?)});
  
  // Register the types of the return value and OUT parameter
  csregisterOutParameter( TypesVARCHAR);
  csregisterOutParameter( TypesVARCHAR);
  
  // Execute and retrieve the returned values
  csexecute();
  retValue = csgetString();      // return value
  String outParam = csgetString();  // OUT parameter
  
  // 調用有一個in/out參數的函數; the function returns a VARCHAR
  cs = connectionprepareCall({? = call myfuncinout(?)});
  
  // Register the types of the return value and OUT parameter
  csregisterOutParameter( TypesVARCHAR);
  csregisterOutParameter( TypesVARCHAR);
  
  // Set the value for the IN/OUT parameter
  cssetString( a string);
  
  // Execute and retrieve the returned values
  csexecute();
  retValue = csgetString();      // return value
  outParam = csgetString();      // IN/OUT parameter
  } catch (SQLException e) {
  }
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26158.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.