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 updateNull(int columnIndex) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateNull(String columnLabel) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateObject(int columnIndex, Object x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateObject(String columnLabel, Object x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateRef(int columnIndex, Ref x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateRef(String columnLabel, Ref x) throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java
@Override public void updateRow() throws SQLException { throw new SQLFeatureNotSupportedException(); }
From source file:com.frameworkset.commons.dbcp2.BasicDataSource.java
@Override public Logger getParentLogger() throws SQLFeatureNotSupportedException { throw new SQLFeatureNotSupportedException(); }