1 16 package oracle.jdbc; 17 18 import java.sql.ResultSet ; 19 import java.sql.SQLException ; 20 21 27 public abstract class OracleResultSet implements ResultSet { 28 29 public oracle.sql.BLOB getBLOB(int idx) throws SQLException { 30 throw new NoSuchMethodError ("This is a mock object"); 31 } 32 33 public oracle.sql.CLOB getCLOB(int idx) throws SQLException { 34 throw new NoSuchMethodError ("This is a mock object"); 35 } 36 } 37 | Popular Tags |