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 Ref getRef(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateByte(String columnLabel, byte x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public int getRow() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateShort(String columnLabel, short x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public RowId getRowId(int columnIndex) throws SQLException {
    // TODO: support?
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public RowId getRowId(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateLong(String columnLabel, long x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public SQLXML getSQLXML(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateFloat(String columnLabel, float x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}