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.mulgara.scon.Connection.java

@Override
public Clob createClob() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void setCursorName(String name) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.mulgara.scon.Connection.java

@Override
public Blob createBlob() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.mulgara.scon.Connection.java

@Override
public NClob createNClob() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.mulgara.scon.Connection.java

@Override
public SQLXML createSQLXML() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public void insertRow() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public boolean isFirst() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public boolean isLast() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}