* @throws SQLException
*/
@Test(expected = SQLException.class)
public void prepared_statement_bad_setters_05() throws SQLException {
JenaConnection conn = this.getConnection();
PreparedStatement stmt = conn.prepareStatement("SELECT * WHERE { ? ?p ?o }");
try {
// No RDF equivalent for unknown SQL Type
stmt.setObject(1, new Object(), Integer.MAX_VALUE);
} finally {