Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.apache.cassandra.cql.jdbc;
/*
*
* 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.
*
*/
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.sql.*;
import java.util.Map;
/** a class to hold all the unimplemented crap */
abstract class AbstractResultSet
{
protected static final String NOT_SUPPORTED = "the Cassandra implementation does not support this method";
public void cancelRowUpdates() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void deleteRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Array getArray(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Array getArray(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getAsciiStream(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getAsciiStream(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getBinaryStream(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getBinaryStream(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Blob getBlob(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Blob getBlob(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Reader getCharacterStream(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Reader getCharacterStream(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Clob getClob(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Clob getClob(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public String getCursorName() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Reader getNCharacterStream(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Reader getNCharacterStream(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public NClob getNClob(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public NClob getNClob(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public String getNString(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public String getNString(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Object getObject(int arg0, Map> arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Object getObject(String arg0, Map> arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public T getObject(String columnLabel, Class type) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public T getObject(int columnIndex, Class type) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Ref getRef(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public Ref getRef(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public SQLXML getSQLXML(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public SQLXML getSQLXML(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getUnicodeStream(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public InputStream getUnicodeStream(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void insertRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void moveToCurrentRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void moveToInsertRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void refreshRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public boolean rowDeleted() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public boolean rowInserted() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public boolean rowUpdated() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
//
// all the update methods are unsupported, requires a separate statement in Cassandra
//
public void updateArray(int arg0, Array arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateArray(String arg0, Array arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(int arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(int arg0, InputStream arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(int arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(String arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(String arg0, InputStream arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateAsciiStream(String arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBigDecimal(int arg0, BigDecimal arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBigDecimal(String arg0, BigDecimal arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(int arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(int arg0, InputStream arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(int arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(String arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(String arg0, InputStream arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBinaryStream(String arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(int arg0, Blob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(int arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(int arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(String arg0, Blob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(String arg0, InputStream arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBlob(String arg0, InputStream arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBoolean(int arg0, boolean arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBoolean(String arg0, boolean arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateByte(int arg0, byte arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateByte(String arg0, byte arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBytes(int arg0, byte[] arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateBytes(String arg0, byte[] arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(int arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(int arg0, Reader arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(int arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(String arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(String arg0, Reader arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateCharacterStream(String arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(int arg0, Clob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(int arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(int arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(String arg0, Clob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(String arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateClob(String arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateDate(int arg0, Date arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateDate(String arg0, Date arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateDouble(int arg0, double arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateDouble(String arg0, double arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateFloat(int arg0, float arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateFloat(String arg0, float arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateInt(int arg0, int arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateInt(String arg0, int arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateLong(int arg0, long arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateLong(String arg0, long arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNCharacterStream(int arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNCharacterStream(int arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNCharacterStream(String arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNCharacterStream(String arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(int arg0, NClob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(int arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(int arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(String arg0, NClob arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(String arg0, Reader arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNClob(String arg0, Reader arg1, long arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNString(int arg0, String arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNString(String arg0, String arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNull(int arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateNull(String arg0) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateObject(int arg0, Object arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateObject(int arg0, Object arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateObject(String arg0, Object arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateObject(String arg0, Object arg1, int arg2) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateRef(int arg0, Ref arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateRef(String arg0, Ref arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateRow() throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateRowId(int arg0, RowId arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateRowId(String arg0, RowId arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateShort(int arg0, short arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateShort(String arg0, short arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateSQLXML(int arg0, SQLXML arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateSQLXML(String arg0, SQLXML arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateString(int arg0, String arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateString(String arg0, String arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateTime(int arg0, Time arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateTime(String arg0, Time arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateTimestamp(int arg0, Timestamp arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
public void updateTimestamp(String arg0, Timestamp arg1) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
}