jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/RowSetMetaDataImpl.java
changeset 27259 8dc38c3bad7e
parent 25991 e48157b42439
child 31061 fead7d86d75f
equal deleted inserted replaced
27258:e66ef2eba095 27259:8dc38c3bad7e
   801      * @return <code>true</code> if a write operation on the designated column will
   801      * @return <code>true</code> if a write operation on the designated column will
   802      *         definitely succeed; <code>false</code> otherwise
   802      *         definitely succeed; <code>false</code> otherwise
   803      * @throws SQLException if a database access error occurs
   803      * @throws SQLException if a database access error occurs
   804      * or the given column number is out of bounds
   804      * or the given column number is out of bounds
   805      */
   805      */
   806     public  boolean isDefinitelyWritable(int columnIndex)
   806     public  boolean isDefinitelyWritable(int columnIndex) throws SQLException {
   807         throws SQLException { return true;}
   807         checkColRange(columnIndex);
       
   808         return true;
       
   809     }
   808 
   810 
   809     /**
   811     /**
   810      * Retrieves the fully-qualified name of the class in the Java
   812      * Retrieves the fully-qualified name of the class in the Java
   811      * programming language to which a value in the designated column
   813      * programming language to which a value in the designated column
   812      * will be mapped.  For example, if the value is an <code>int</code>,
   814      * will be mapped.  For example, if the value is an <code>int</code>,