com.pivotal.gemfirexd.internal.vti.VTITemplate Maven / Gradle / Ivy
Show all versions of gemfirexd-core Show documentation
/*
Derby - Class com.pivotal.gemfirexd.internal.vti.VTITemplate
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
* Changes for GemFireXD distributed data platform (some marked by "GemStone changes")
*
* Portions Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You
* may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License. See accompanying
* LICENSE file.
*/
package com.pivotal.gemfirexd.internal.vti;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.math.BigDecimal;
import java.io.InputStream;
import java.io.Reader;
import java.net.URL;
import java.util.Calendar;
import java.sql.Ref;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Array;
import java.sql.NClob;
import java.sql.RowId;
import java.sql.SQLXML;
import com.pivotal.gemfirexd.internal.iapi.reference.SQLState;
import com.pivotal.gemfirexd.internal.impl.jdbc.Util;
/**
An abstract implementation of ResultSet (JDK1.1/JDBC 1.2) that is useful
when writing a read-only VTI (virtual table interface) or for
the ResultSet returned by executeQuery in read-write VTI classes.
This class implements most of the methods of the JDBC 1.2 interface java.sql.ResultSet,
each one throwing a SQLException with the name of the method.
A concrete subclass can then just implement the methods not implemented here
and override any methods it needs to implement for correct functionality.
The methods not implemented here are
- next()
- close()
- getMetaData()
For virtual tables the database engine only calls methods defined
in the JDBC 1.2 definition of java.sql.ResultSet.
Classes that implement a JDBC 2.0 conformant java.sql.ResultSet can be used
as virtual tables.
*/
public abstract class VTITemplate implements ResultSet {
//
// java.sql.ResultSet calls, passed through to our result set.
//
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean wasNull() throws SQLException {
throw new SQLException("wasNull");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public String getString(int columnIndex) throws SQLException {
throw new SQLException("getString");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean getBoolean(int columnIndex) throws SQLException {
throw new SQLException("getBoolean");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public byte getByte(int columnIndex) throws SQLException {
throw new SQLException("getByte");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public short getShort(int columnIndex) throws SQLException {
throw new SQLException("getShort");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getInt(int columnIndex) throws SQLException {
throw new SQLException("getInt");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public long getLong(int columnIndex) throws SQLException {
throw new SQLException("getLong");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public float getFloat(int columnIndex) throws SQLException {
throw new SQLException("getFloat");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public double getDouble(int columnIndex) throws SQLException {
throw new SQLException("getDouble");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
* @deprecated
*/
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
throw new SQLException("getBigDecimal");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public byte[] getBytes(int columnIndex) throws SQLException {
throw new SQLException("getBytes");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Date getDate(int columnIndex) throws SQLException {
throw new SQLException("getDate");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Time getTime(int columnIndex) throws SQLException {
throw new SQLException("getTime");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException {
throw new SQLException("getTimestamp");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.InputStream getAsciiStream(int columnIndex) throws SQLException {
throw new SQLException("getAsciiStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
* @deprecated
*/
public java.io.InputStream getUnicodeStream(int columnIndex) throws SQLException {
throw new SQLException("getUnicodeStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.InputStream getBinaryStream(int columnIndex)
throws SQLException {
throw new SQLException("getBinaryStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public String getString(String columnName) throws SQLException {
return getString(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean getBoolean(String columnName) throws SQLException {
return getBoolean(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public byte getByte(String columnName) throws SQLException {
return getByte(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public short getShort(String columnName) throws SQLException {
return getShort(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getInt(String columnName) throws SQLException {
return getInt(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public long getLong(String columnName) throws SQLException {
return getLong(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public float getFloat(String columnName) throws SQLException {
return getFloat(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public double getDouble(String columnName) throws SQLException {
return getDouble(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
* @deprecated
*/
public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
return getBigDecimal(findColumn(columnName), scale);
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public byte[] getBytes(String columnName) throws SQLException {
return getBytes(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Date getDate(String columnName) throws SQLException {
return getDate(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Time getTime(String columnName) throws SQLException {
return getTime(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Timestamp getTimestamp(String columnName) throws SQLException {
return getTimestamp(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.InputStream getAsciiStream(String columnName) throws SQLException {
throw new SQLException("getAsciiStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
* @deprecated
*/
public java.io.InputStream getUnicodeStream(String columnName) throws SQLException {
throw new SQLException("getUnicodeStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.InputStream getBinaryStream(String columnName)
throws SQLException {
throw new SQLException("getBinaryStream");
}
/**
* @exception SQLException if there is an error
*/
public SQLWarning getWarnings() throws SQLException {
return null;
}
/**
* @exception SQLException if there is an error
*/
public void clearWarnings() throws SQLException {
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public String getCursorName() throws SQLException {
throw new SQLException("getCursorName");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Object getObject(int columnIndex) throws SQLException {
throw new SQLException("getObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Object getObject(String columnName) throws SQLException {
return getObject(findColumn(columnName));
}
// GemStone changes BEGIN
// JDBC 4.1 methods from jdk 1.7
public T getObject(String columnLabel, Class type) throws SQLException {
return getObject(findColumn(columnLabel), type);
}
public T getObject(int columnIndex, Class type) throws SQLException {
final Object res = getObject(columnIndex);
return type.cast(res);
}
// End of JDBC 4.1 methods from jdk 1.7
// GemStone changes END
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int findColumn(String columnName) throws SQLException {
throw new SQLException("findColumn");
}
/*
** JDBC 2.0 methods
*/
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.Reader getCharacterStream(int columnIndex)
throws SQLException {
throw new SQLException("getCharacterStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.io.Reader getCharacterStream(String columnName)
throws SQLException {
throw new SQLException("getCharacterStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public BigDecimal getBigDecimal(int columnIndex)
throws SQLException {
throw new SQLException("getBigDecimal");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public BigDecimal getBigDecimal(String columnName)
throws SQLException {
return getBigDecimal(findColumn(columnName));
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean isBeforeFirst()
throws SQLException {
throw new SQLException("isBeforeFirst");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean isAfterLast()
throws SQLException {
throw new SQLException("isAfterLast");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean isFirst()
throws SQLException {
throw new SQLException("isFirst");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean isLast()
throws SQLException {
throw new SQLException("isLast");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void beforeFirst()
throws SQLException {
throw new SQLException("beforeFirst");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void afterLast()
throws SQLException {
throw new SQLException("afterLast");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean first()
throws SQLException {
throw new SQLException("first");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean last()
throws SQLException {
throw new SQLException("last");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getRow()
throws SQLException {
throw new SQLException("getRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean absolute(int row)
throws SQLException {
throw new SQLException("absolute");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean relative(int rows)
throws SQLException {
throw new SQLException("relative");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean previous()
throws SQLException {
throw new SQLException("previous");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void setFetchDirection(int direction)
throws SQLException {
throw new SQLException("setFetchDirection");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getFetchDirection()
throws SQLException {
throw new SQLException("getFetchDirection");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void setFetchSize(int rows)
throws SQLException {
throw new SQLException("setFetchSize");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getFetchSize()
throws SQLException {
throw new SQLException("getFetchSize");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getType()
throws SQLException {
throw new SQLException("getType");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public int getConcurrency()
throws SQLException {
throw new SQLException("getConcurrency");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean rowUpdated()
throws SQLException {
throw new SQLException("rowUpdated");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean rowInserted()
throws SQLException {
throw new SQLException("rowInserted");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public boolean rowDeleted()
throws SQLException {
throw new SQLException("rowDeleted");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateNull(int columnIndex)
throws SQLException {
throw new SQLException("updateNull");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBoolean(int columnIndex, boolean x)
throws SQLException {
throw new SQLException("updateBoolean");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateByte(int columnIndex, byte x)
throws SQLException {
throw new SQLException("updateByte");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateShort(int columnIndex, short x)
throws SQLException {
throw new SQLException("updateShort");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateInt(int columnIndex, int x)
throws SQLException {
throw new SQLException("updateInt");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateLong(int columnIndex, long x)
throws SQLException {
throw new SQLException("updateLong");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateFloat(int columnIndex, float x)
throws SQLException {
throw new SQLException("updateFloat");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateDouble(int columnIndex, double x)
throws SQLException {
throw new SQLException("updateDouble");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBigDecimal(int columnIndex, BigDecimal x)
throws SQLException {
throw new SQLException("updateBigDecimal");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateString(int columnIndex, String x)
throws SQLException {
throw new SQLException("updateString");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBytes(int columnIndex, byte[] x)
throws SQLException {
throw new SQLException("updateBytes");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateDate(int columnIndex, java.sql.Date x)
throws SQLException {
throw new SQLException("updateDate");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateTime(int columnIndex, java.sql.Time x)
throws SQLException {
throw new SQLException("updateTime");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateTimestamp(int columnIndex, java.sql.Timestamp x)
throws SQLException {
throw new SQLException("updateTimestamp");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
throws SQLException {
throw new SQLException("updateAsciiStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
throws SQLException {
throw new SQLException("updateBinaryStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
throws SQLException {
throw new SQLException("updateCharacterStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateObject(int columnIndex,
Object x,
int scale)
throws SQLException {
throw new SQLException("updateObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateObject(int columnIndex, Object x)
throws SQLException {
throw new SQLException("updateObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateNull(String columnName)
throws SQLException {
throw new SQLException("updateNull");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBoolean(String columnName, boolean x)
throws SQLException {
throw new SQLException("updateBoolean");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateByte(String columnName, byte x)
throws SQLException {
throw new SQLException("updateByte");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateShort(String columnName, short x)
throws SQLException {
throw new SQLException("updateShort");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateInt(String columnName, int x)
throws SQLException {
throw new SQLException("updateInt");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateLong(String columnName, long x)
throws SQLException {
throw new SQLException("updateLong");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateFloat(String columnName, float x)
throws SQLException {
throw new SQLException("updateFloat");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateDouble(String columnName, double x)
throws SQLException {
throw new SQLException("updateDouble");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBigDecimal(String columnName, BigDecimal x)
throws SQLException {
throw new SQLException("updateBigDecimal");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateString(String columnName, String x)
throws SQLException {
throw new SQLException("updateString");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBytes(String columnName, byte[] x)
throws SQLException {
throw new SQLException("updateBytes");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateDate(String columnName, java.sql.Date x)
throws SQLException {
throw new SQLException("updateDate");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateTime(String columnName, java.sql.Time x)
throws SQLException {
throw new SQLException("updateTime");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateTimestamp(String columnName, java.sql.Timestamp x)
throws SQLException {
throw new SQLException("updateTimestamp");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateAsciiStream(String columnName,
java.io.InputStream x,
int length)
throws SQLException {
throw new SQLException("updateAsciiStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBinaryStream(String columnName,
java.io.InputStream x,
int length)
throws SQLException {
throw new SQLException("updateBinaryStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateCharacterStream(String columnName,
java.io.Reader x,
int length)
throws SQLException {
throw new SQLException("updateCharacterStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateObject(String columnName,
Object x,
int scale)
throws SQLException {
throw new SQLException("updateObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateObject(String columnName, Object x)
throws SQLException {
throw new SQLException("updateObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void insertRow()
throws SQLException {
throw new SQLException("insertRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateRow()
throws SQLException {
throw new SQLException("updateRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void deleteRow()
throws SQLException {
throw new SQLException("deleteRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void refreshRow()
throws SQLException {
throw new SQLException("refreshRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void cancelRowUpdates()
throws SQLException {
throw new SQLException("cancelRowUpdates");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void moveToInsertRow()
throws SQLException {
throw new SQLException("moveToInsertRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void moveToCurrentRow()
throws SQLException {
throw new SQLException("moveToCurrentRow");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Statement getStatement()
throws SQLException {
throw new SQLException("getStatement");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Date getDate(int columnIndex, Calendar cal)
throws SQLException {
throw new SQLException("getDate");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Date getDate(String columnName, Calendar cal)
throws SQLException {
throw new SQLException("getDate");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Time getTime(int columnIndex, Calendar cal)
throws SQLException {
throw new SQLException("getTime");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Time getTime(String columnName, Calendar cal)
throws SQLException {
throw new SQLException("getTime");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal)
throws SQLException {
throw new SQLException("getTimestamp");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public java.sql.Timestamp getTimestamp(String columnName, Calendar cal)
throws SQLException {
throw new SQLException("getTimestamp");
}
/*
** JDBC 3.0 methods
*/
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public URL getURL(int columnIndex)
throws SQLException
{
throw new SQLException("getURL");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public URL getURL(String columnName)
throws SQLException {
throw new SQLException("getURL");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
// GemStone changes BEGIN
// match the generic signature in JDBC 4.0
public Object getObject(int i, java.util.Map> map)
/* (original derby code) public Object getObject(int i, java.util.Map map) */
// GemStone changes END
throws SQLException {
throw new SQLException("getObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Ref getRef(int i)
throws SQLException {
throw new SQLException("getRef");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Blob getBlob(int i)
throws SQLException {
throw new SQLException("getBlob");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Clob getClob(int i)
throws SQLException {
throw new SQLException("getClob");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Array getArray(int i)
throws SQLException {
throw new SQLException("getArray");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
// GemStone changes BEGIN
// match the generic signature in JDBC 4.0
public Object getObject(String colName, java.util.Map> map)
/* (original derby code) public Object getObject(String colName, java.util.Map map) */
// GemStone changes END
throws SQLException {
throw new SQLException("getObject");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Ref getRef(String colName)
throws SQLException {
throw new SQLException("getRef");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Blob getBlob(String colName)
throws SQLException {
throw new SQLException("getBlob");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Clob getClob(String colName)
throws SQLException {
throw new SQLException("getClob");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public Array getArray(String colName)
throws SQLException {
throw new SQLException("getArray");
}
// JDBC 3.0 methods - not implemented
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateRef(int columnIndex, Ref x)
throws SQLException {
throw new SQLException("updateRef");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateRef(String columnName, Ref x)
throws SQLException {
throw new SQLException("updateRef");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBlob(int columnIndex, Blob x)
throws SQLException {
throw new SQLException("updateBlob");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateBlob(String columnName, Blob x)
throws SQLException {
throw new SQLException("updateBlob");
}
public void updateBlob(String columnName, InputStream x)
throws SQLException {
throw new SQLException("updateBlob");
}
public void updateBlob(String columnName, InputStream x, long length)
throws SQLException {
throw new SQLException("updateBlob");
}
public void updateBlob(int columnIndex, InputStream x, long length)
throws SQLException {
throw new SQLException("updateBlob");
}
public void updateBlob(int columnIndex, InputStream x)
throws SQLException {
throw new SQLException("updateBlob");
}
public void updateClob(int columnIndex, Clob x)
throws SQLException {
throw new SQLException("updateClob");
}
public void updateClob(String columnName, Clob x)
throws SQLException {
throw new SQLException("updateClob");
}
public void updateClob(String columnName, Reader x)
throws SQLException {
throw new SQLException("updateClob");
}
public void updateClob(String columnName, Reader x, long length)
throws SQLException {
}
public void updateClob(int columnIndex, Reader x)
throws SQLException {
throw new SQLException("updateClob");
}
public void updateClob(int columnIndex, Reader x, long length)
throws SQLException {
throw new SQLException("updateClob");
}
public void updateAsciiStream(String columnName, java.io.InputStream x,
long length) throws SQLException {
throw new SQLException("updateAsciiStream");
}
public void updateAsciiStream(int columnIndex, java.io.InputStream x,
long length) throws SQLException {
throw new SQLException("updateAsciiStream");
}
public void updateAsciiStream(String columnName, InputStream x)
throws SQLException {
throw new SQLException("updateAsciiStream");
}
public void updateAsciiStream(int columnIndex, InputStream x)
throws SQLException {
throw new SQLException("updateAsciiStream");
}
public void updateBinaryStream(String columnName, java.io.InputStream x,
long length) throws SQLException {
throw new SQLException("updateBinaryStream");
}
public void updateBinaryStream(int columnIndex, java.io.InputStream x,
long length) throws SQLException {
throw new SQLException("updateBinaryStream");
}
public void updateBinaryStream(String columnName, InputStream x)
throws SQLException {
throw new SQLException("updateBinaryStream");
}
public void updateBinaryStream(int columnIndex, InputStream x)
throws SQLException {
throw new SQLException("updateBinaryStream");
}
public void updateCharacterStream(String columnName, java.io.Reader reader,
long length) throws SQLException {
throw new SQLException("updateCharacterStream");
}
public void updateCharacterStream(int columnIndex, java.io.Reader reader,
long length) throws SQLException {
throw new SQLException("updateCharacterStream");
}
public void updateCharacterStream(String columnName, Reader reader)
throws SQLException {
throw new SQLException("updateCharacterStream");
}
public void updateCharacterStream(int columnIndex, java.io.Reader x)
throws SQLException {
throw new SQLException("updateCharacterStream");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateArray(int columnIndex, Array x)
throws SQLException {
throw new SQLException("updateArray");
}
/**
* @see java.sql.ResultSet
*
* @exception SQLException on unexpected JDBC error
*/
public void updateArray(String columnName, Array x)
throws SQLException {
throw new SQLException("updateArray");
}
// GemStone changes BEGIN
/////////////////
// Methods for JDBC 4.0
public RowId getRowId(int columnIndex) throws SQLException {
throw Util.notImplemented();
}
public RowId getRowId(String columnName) throws SQLException {
throw Util.notImplemented();
}
public void updateNCharacterStream(int columnIndex, Reader x)
throws SQLException {
throw Util.notImplemented();
}
public void updateNCharacterStream(int columnIndex, Reader x, long length)
throws SQLException {
throw Util.notImplemented();
}
public void updateNCharacterStream(String columnName, Reader x)
throws SQLException {
throw Util.notImplemented();
}
public void updateNCharacterStream(String columnName, Reader x, long length)
throws SQLException {
throw Util.notImplemented();
}
public void updateNString(int columnIndex, String nString) throws SQLException {
throw Util.notImplemented();
}
public void updateNString(String columnName, String nString) throws SQLException {
throw Util.notImplemented();
}
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
throw Util.notImplemented();
}
public void updateNClob(int columnIndex, Reader reader)
throws SQLException {
throw Util.notImplemented();
}
public void updateNClob(String columnName, NClob nClob) throws SQLException {
throw Util.notImplemented();
}
public void updateNClob(String columnName, Reader reader)
throws SQLException {
throw Util.notImplemented();
}
public Reader getNCharacterStream(int columnIndex) throws SQLException {
throw Util.notImplemented();
}
public Reader getNCharacterStream(String columnName) throws SQLException {
throw Util.notImplemented();
}
public NClob getNClob(int i) throws SQLException {
throw Util.notImplemented();
}
public NClob getNClob(String colName) throws SQLException {
throw Util.notImplemented();
}
public String getNString(int columnIndex) throws SQLException {
throw Util.notImplemented();
}
public String getNString(String columnName) throws SQLException {
throw Util.notImplemented();
}
public void updateRowId(int columnIndex, RowId x) throws SQLException {
throw Util.notImplemented();
}
public void updateRowId(String columnName, RowId x) throws SQLException {
throw Util.notImplemented();
}
public SQLXML getSQLXML(int columnIndex) throws SQLException {
throw Util.notImplemented();
}
public SQLXML getSQLXML(String colName) throws SQLException {
throw Util.notImplemented();
}
public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
throw Util.notImplemented();
}
public void updateSQLXML(String columnName, SQLXML xmlObject) throws SQLException {
throw Util.notImplemented();
}
/**
* Returns false unless interfaces
is implemented
*
* @param interfaces a Class defining an interface.
* @return true if this implements the interface or
* directly or indirectly wraps an object
* that does.
* @throws java.sql.SQLException if an error occurs while determining
* whether this is a wrapper for an object
* with the given interface.
*/
public boolean isWrapperFor(Class> interfaces) throws SQLException {
//checkIfClosed("isWrapperFor");
return interfaces.isInstance(this);
}
/**
* Returns this
if this class implements the interface
*
* @param interfaces a Class defining an interface
* @return an object that implements the interface
* @throws java.sql.SQLExption if no object if found that implements the
* interface
*/
public T unwrap(java.lang.Class interfaces)
throws SQLException{
//checkIfClosed("unwrap");
//Derby does not implement non-standard methods on
//JDBC objects
//hence return this if this class implements the interface
//or throw an SQLException
try {
return interfaces.cast(this);
} catch (ClassCastException cce) {
throw Util.generateCsSQLException(SQLState.UNABLE_TO_UNWRAP,interfaces);
}
}
/**
*
* Updates the designated column using the given Reader object,
* which is the given number of characters long.
*
* @param columnIndex -
* the first column is 1, the second is 2
* @param x -
* the new column value
* @param length -
* the length of the stream
*
* @exception SQLException
* Feature not implemented for now.
*/
public void updateNClob(int columnIndex, Reader x, long length)
throws SQLException {
throw Util.notImplemented();
}
/**
* Updates the designated column using the given Reader object,
* which is the given number of characters long.
*
* @param columnName -
* the Name of the column to be updated
* @param x -
* the new column value
* @param length -
* the length of the stream
*
* @exception SQLException
* Feature not implemented for now.
*
*/
public void updateNClob(String columnName, Reader x, long length)
throws SQLException{
throw Util.notImplemented();
}
public boolean isClosed() throws SQLException {
throw Util.notImplemented();
}
public final int getHoldability() throws SQLException {
throw Util.notImplemented();
}
// GemStone changes END
}