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.TDHSStatement.java

public boolean execute(String sql, int autoGeneratedKeys) throws SQLException {
    if (autoGeneratedKeys == Statement.RETURN_GENERATED_KEYS) {
        throw new SQLFeatureNotSupportedException();
    }/*from   w w  w. ja va2  s  . co  m*/
    return execute(sql);
}

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

@Override
public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public boolean execute(String sql, int[] columnIndexes) throws SQLException {
    if (columnIndexes != null && columnIndexes.length > 0) {
        throw new SQLFeatureNotSupportedException();
    }/* w  ww . ja  va  2  s  . c  o m*/
    return execute(sql);
}

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

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

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

@Override
public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

public boolean execute(String sql, String[] columnNames) throws SQLException {
    if (columnNames != null && columnNames.length > 0) {
        throw new SQLFeatureNotSupportedException();
    }/*from ww  w  .ja va  2 s.co  m*/
    return execute(sql);
}

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

@Override
public void updateBlob(int columnIndex, Blob x) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}