1 package com.mockobjects.sql; 2 3 import java.net.URL ; 4 import java.sql.Array ; 5 import java.sql.Blob ; 6 import java.sql.Clob ; 7 import java.sql.Ref ; 8 import java.sql.SQLException ; 9 10 public class MockSingleRowResultSet extends CommonMockSingleRowResultSet { 11 public URL getURL(int columnIndex) throws SQLException { 12 notImplemented(); 13 return null; 14 } 15 16 public URL getURL(String columnName) throws SQLException { 17 notImplemented(); 18 return null; 19 } 20 21 public void updateRef(int columnIndex, Ref x) throws SQLException { 22 notImplemented(); 23 } 24 25 public void updateRef(String columnName, Ref x) throws SQLException { 26 notImplemented(); 27 } 28 29 public void updateBlob(int columnIndex, Blob x) throws SQLException { 30 notImplemented(); 31 } 32 33 public void updateBlob(String columnName, Blob x) throws SQLException { 34 notImplemented(); 35 } 36 37 public void updateClob(int columnIndex, Clob x) throws SQLException { 38 notImplemented(); 39 } 40 41 public void updateClob(String columnName, Clob x) throws SQLException { 42 notImplemented(); 43 } 44 45 public void updateArray(int columnIndex, Array x) throws SQLException { 46 notImplemented(); 47 } 48 49 public void updateArray(String columnName, Array x) throws SQLException { 50 notImplemented(); 51 } 52 } 53 | Popular Tags |