*
* @throws SQLException
*/
@Test(expected = SQLFeatureNotSupportedException.class)
public void statement_settings_06() throws SQLException {
JenaConnection conn = this.getConnection();
Statement stmt = conn.createStatement();
Assert.assertEquals(ResultSet.FETCH_FORWARD, stmt.getFetchDirection());
stmt.setFetchDirection(ResultSet.FETCH_FORWARD);
Assert.assertEquals(ResultSet.FETCH_FORWARD, stmt.getFetchDirection());
try {
stmt.setFetchDirection(ResultSet.FETCH_REVERSE);
} finally {
stmt.close();
conn.close();
}
}