src/java.sql.rowset/share/classes/javax/sql/rowset/RowSetMetaDataImpl.java

Print this page

        

*** 801,812 **** * @return <code>true</code> if a write operation on the designated column will * definitely succeed; <code>false</code> otherwise * @throws SQLException if a database access error occurs * or the given column number is out of bounds */ ! public boolean isDefinitelyWritable(int columnIndex) ! throws SQLException { return true;} /** * Retrieves the fully-qualified name of the class in the Java * programming language to which a value in the designated column * will be mapped. For example, if the value is an <code>int</code>, --- 801,814 ---- * @return <code>true</code> if a write operation on the designated column will * definitely succeed; <code>false</code> otherwise * @throws SQLException if a database access error occurs * or the given column number is out of bounds */ ! public boolean isDefinitelyWritable(int columnIndex) throws SQLException { ! checkColRange(columnIndex); ! return true; ! } /** * Retrieves the fully-qualified name of the class in the Java * programming language to which a value in the designated column * will be mapped. For example, if the value is an <code>int</code>,