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.adfs.database.tdhsocket.client.response.TDHSResutSet.java

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

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

@Override
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency)
        throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

@Override
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency)
        throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public Map<String, Class<?>> getTypeMap() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public void setHoldability(int holdability) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}