1 17 package org.apache.servicemix.jdbc.adapter; 18 19 import java.sql.Blob ; 20 import java.sql.ResultSet ; 21 import java.sql.SQLException ; 22 23 43 public class OracleJDBCAdapter extends DefaultJDBCAdapter { 44 45 protected byte[] getBinaryData(ResultSet rs, int index) throws SQLException { 46 Blob aBlob = rs.getBlob(index); 48 if (aBlob == null) { 49 return null; 50 } 51 return aBlob.getBytes(1, (int) aBlob.length()); 52 } 53 } 54 | Popular Tags |