I am using ojdbc6 jar and I want to use the In clause in a PreparedStatement.
I have used the createArrayOf(String,ArrayOfString)
method of the connection object.
I got an error as Unsupported Feature
I have checked the PhysicalConnection class in the implementation for this method is
public Array createArrayOf(String s, Object aobj[]) throws SQLException {
SQLException sqlexception = DatabaseError.createUnsupportedFeatureSqlException();
sqlexception.fillInStackTrace();
throw sqlexception;
}
I have checked the ojdbc14.jar for this method. In that .jar file this method is not defined.
Please help me, which jar do I have to use? I want to implement the In clause functionality in the PreparedStatement.