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 updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(int columnIndex, NClob nClob) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(String columnLabel, NClob nClob) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(int columnIndex, Reader reader) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(String columnLabel, Reader reader) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNString(int columnIndex, String nString) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNString(String columnLabel, String nString) throws SQLException { throw new SQLFeatureNotSupportedException(); }