讀寫Oracle 10g的CLOB欄位

今天有個將超長字串寫入Oracle資料庫的需求,原先以為只要把欄位型態定義CLOB (Character Large OBject)再用setString填入即可,沒想到當字串長度超過8K時就會產生SQLException,哇,難道真的要用stream的方法來處理嗎?有點麻煩哩。還好,終於找到解決方法,但似乎只能用在Oracle10g上:

  1. Oracle 10g針對CLOB 形態做了加強,能直接用getStringsetString來讀寫CLOB欄位。
  • 字串長度最大32,765 Bytes
  • 必須使用Oracle 10gJDBC driver (ojdbc14.jar)
  • Varchar2最大只能設定到4000,因此有較長字串需處理時,可使用CLOB再限制長度為32765 (此長度應該對大部份應用都能適用)
  1. 存取超過32,765字串時的特殊處理:
    1. 使用擴充的setStringForClob method:
      opstmt = (OraclePreparedStatement)conn.prepareStatement(sql);
      // Use the new method to insert the CLOB data (for data greater or lesser than 32 KB)
      opstmt.setStringForClob(1,str);
      // Execute the OraclePreparedStatement
      opstmt.executeUpdate();
      
    2. 啟始Driver時設定參數
      // Load the database details into the variables.
      String url = "jdbc:oracle:thin:@localhost:1521:orcl";
      String user = "scott";
      String password = "tiger";
      // Create the properties object that holds all database details
      Properties props = new Properties();
      props.put("user", user );
      props.put("password", password);
      props.put("SetBigStringTryClob", "true");
      // Load the Oracle JDBC driver class.
      DriverManager.registerDriver(new OracleDriver()); 
      
      // Get the database connection
      Connection conn = DriverManager.getConnection( this.url, this.props );
      

##

您可能也會有興趣的類似文章

填寫回應

 

 

 

您可使用這些HTML標籤

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">

隨機文章

  1. What’s Running: 顯示運作中的Process或Service的軟體 
  2. [JasperReports] 0.6.7更新與JasperSoft提供商業服務 
  3. 方便切換目錄的指令:PUSHD與POPD 
  4. 將版面稍稍做了一點調整 
  5. IE會自動把標籤轉成大寫! 
  6. SlickRun 命令行視窗執行常用程式 
  7. 「無名好慢???」終於消失了? (5)
  8. [轉貼] 蚊子老是找上你? 專家:人體二氧化碳濃度作祟 
  9. 你可能不知道的微軟工具-10款鮮為人知的微軟免費軟體 (4)
  10. [轉貼] 市場觀察》網路書店崛起 拚長尾精神 

歷史熱門文章

  1. 如何手動輸入Plurk的表情圖示? (352,025 點擊/2008-09-29)
  2. 簡單放大Plurk輸入區的方法[修訂] (86,778 點擊/2008-09-29)
  3. Plurk CSS樣式自訂修改全攻略 (82,768 點擊/2009-07-04)
  4. 啟用&關閉中華電信ZyXEL P874的無線網路連線功能的步驟[修訂] (82,385 點擊/2011-06-01)
  5. 網路升級光世代50M/3M與設定ZyXEL P874 (52,405 點擊/2011-05-28)
  6. 輕鬆學會彈指神功-揭露AutoHotkey絕技 (42,812 點擊/2008-04-10)
  7. iPad新手入門技巧 (39,992 點擊/2011-02-05)
  8. 分享世博台灣館主題曲『台灣的心跳聲』MV(附歌詞+下載連結+新歌詞) (38,040 點擊/2010-04-27)
  9. 把HTC Touch HD操作介面換成Spb Mobile Shell,美觀又便利! (37,863 點擊/2009-02-18)
  10. 另一套適用手機的影片轉檔工具:WinAVI 3GP/MP4/PSP/iPod Video Converter (35,796 點擊/2009-04-18)