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 updateRow() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

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

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

@Override
public Savepoint setSavepoint() throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public Savepoint setSavepoint(String name) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public void rollback(Savepoint savepoint) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}

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

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

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

@Override
public void releaseSavepoint(Savepoint savepoint) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}