* @throws SQLException
*/
@Test(expected = SQLException.class)
public void statement_bad_execute_08() throws SQLException {
JenaConnection conn = this.getConnection();
Statement stmt = conn.createStatement();
try {
stmt.executeUpdate("SELECT * WHERE {", new int[0]);
} finally {
stmt.close();