package com.oreilly.mock;
import com.mockobjects.sql.MockResultSet;
import java.net.URL;
import java.sql.*;
/**
*
* @author Eric M. Burke
* @version $Id: MockResultSetJdk14.java,v 1.1 2002/08/08 00:26:24 jepc Exp $
*/
public abstract class MockResultSetJdk14 extends MockResultSet {
public URL getURL(int columnIndex) throws SQLException {
notImplemented();
return null;
}
public URL getURL(String columnName) throws SQLException {
notImplemented();
return null;
}
public void updateRef(int columnIndex, Ref x) throws SQLException {
notImplemented();
}
public void updateRef(String columnName, Ref x) throws SQLException {
notImplemented();
}
public void updateBlob(int columnIndex, Blob x) throws SQLException {
notImplemented();
}
public void updateBlob(String columnName, Blob x) throws SQLException {
notImplemented();
}
public void updateClob(int columnIndex, Clob x) throws SQLException {
notImplemented();
}
public void updateClob(String columnName, Clob x) throws SQLException {
notImplemented();
}
public void updateArray(int columnIndex, Array x) throws SQLException {
notImplemented();
}
public void updateArray(String columnName, Array x) throws SQLException {
notImplemented();
}
}
|