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:org.apache.phoenix.jdbc.PhoenixResultSet.java

@Override
public Reader getNCharacterStream(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

public void updateString(int columnIndex, String x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public NClob getNClob(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateBytes(int columnIndex, byte[] x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public NClob getNClob(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateDate(int columnIndex, Date x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public String getNString(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateTime(int columnIndex, Time x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}