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(Throwable cause) 

Source Link

Document

Constructs a SQLFeatureNotSupportedException object with a given cause.

Usage

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public Clob createClob() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public NClob createNClob() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public SQLXML createSQLXML() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)
        throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public Struct createStruct(String typeName, Object[] attributes) throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public Properties getClientInfo() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public String getClientInfo(String name) throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public int getHoldability() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

public int getNetworkTimeout() throws SQLException {
    // JDK 1.7//ww  w .j av a2  s. c om
    throw new SQLFeatureNotSupportedException("Method not supported");
}

From source file:org.apache.hive.jdbc.HiveConnection.java

@Override
public Map<String, Class<?>> getTypeMap() throws SQLException {
    // TODO Auto-generated method stub
    throw new SQLFeatureNotSupportedException("Method not supported");
}