Example usage for java.sql SQLFeatureNotSupportedException SQLFeatureNotSupportedException

List of usage examples for java.sql SQLFeatureNotSupportedException SQLFeatureNotSupportedException

Introduction

In this page you can find the example usage for java.sql SQLFeatureNotSupportedException SQLFeatureNotSupportedException.

Prototype

public SQLFeatureNotSupportedException() 

Source Link

Document

Constructs a SQLFeatureNotSupportedException object.

Usage

From source file:com.taobao.tdhs.jdbc.TDHSPreparedStatement.java

public void setClob(int parameterIndex, Reader reader) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java

@Override
public Reader getCharacterStream(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java

@Override
public Clob getClob(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:com.taobao.tdhs.jdbc.TDHSPreparedStatement.java

public void setNClob(int parameterIndex, Reader reader) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java

@Override
public Clob getClob(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.apache.phoenix.jdbc.PhoenixResultSet.java

@Override
public String getCursorName() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:com.taobao.adfs.database.tdhsocket.client.response.TDHSResutSet.java

public void setFetchDirection(int direction) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:com.taobao.adfs.database.tdhsocket.client.response.TDHSResutSet.java

public void setFetchSize(int rows) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:com.taobao.adfs.database.tdhsocket.client.response.TDHSResutSet.java

public int getFetchSize() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:com.taobao.adfs.database.tdhsocket.client.response.TDHSResutSet.java

public boolean rowUpdated() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}