List of usage examples for java.sql SQLFeatureNotSupportedException SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException()
SQLFeatureNotSupportedException
object. From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateDouble(int columnIndex, double x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateDouble(String columnLabel, double x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateFloat(int columnIndex, float x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateFloat(String columnLabel, float x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateInt(int columnIndex, int x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateInt(String columnLabel, int x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateLong(int columnIndex, long x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateLong(String columnLabel, long x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException { throw new SQLFeatureNotSupportedException(); }