Does jdbc support data type ROWID?
572551Apr 28 2007 — edited Apr 28 2007Hi,
I've got a column of type ROWID named id in my_tab, I tried to retrieve the values in Java, as follows but fails:
ResultSet rs = conn.getStatement().executeQuery("select id from my_tab");
while (rs.next()) {
java.sql.RowId id = rs.getRowId("id"); //fails, anything wrong here?
}
the error msg is:
Exception in thread "main" java.lang.AbstractMethodError: oracle.jdbc.driver.OracleResultSetImpl.getRowId(Ljava/lang/String;)Ljava/sql/RowId;
Thank you!
Message was edited by:
user569548
Message was edited by:
user569548