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:fr.xebia.springframework.jdbc.ManagedBasicDataSource.java

/**
 *
 * @see javax.sql.DataSource#getParentLogger()
 * @throws SQLFeatureNotSupportedException
 *//*from   w  w w  .  j  a  v a  2 s .c  om*/
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
    throw new SQLFeatureNotSupportedException();
}

From source file:at.alladin.rmbt.db.dao.TestStatDao.java

@Override
public int delete(TestStat entity) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

From source file:org.apache.openejb.resource.jdbc.BasicDataSource.java

public Logger getParentLogger() throws SQLFeatureNotSupportedException {
    try {/*from w w  w .  j av a 2  s . c o  m*/
        return (Logger) DataSource.class.getDeclaredMethod("getParentLogger").invoke(dataSource);
    } catch (Throwable e) {
        throw new SQLFeatureNotSupportedException();
    }
}

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

@Override
public boolean absolute(int row) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

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

From source file:org.bytesoft.bytejta.supports.jdbc.LocalXADataSource.java

public Logger getParentLogger() throws SQLFeatureNotSupportedException {
    throw new SQLFeatureNotSupportedException();
}

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

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