jdk/src/share/classes/java/sql/ResultSet.java
changeset 20880 1b610151b316
parent 18583 d678ac758734
child 21278 ef8a3a2a72f2
equal deleted inserted replaced
20879:05811931e266 20880:1b610151b316
    74  * <P>For the getter methods, a JDBC driver attempts
    74  * <P>For the getter methods, a JDBC driver attempts
    75  * to convert the underlying data to the Java type specified in the
    75  * to convert the underlying data to the Java type specified in the
    76  * getter method and returns a suitable Java value.  The JDBC specification
    76  * getter method and returns a suitable Java value.  The JDBC specification
    77  * has a table showing the allowable mappings from SQL types to Java types
    77  * has a table showing the allowable mappings from SQL types to Java types
    78  * that can be used by the <code>ResultSet</code> getter methods.
    78  * that can be used by the <code>ResultSet</code> getter methods.
    79  * <P>
    79  *
    80  * <P>Column names used as input to getter methods are case
    80  * <P>Column names used as input to getter methods are case
    81  * insensitive.  When a getter method is called  with
    81  * insensitive.  When a getter method is called  with
    82  * a column name and several columns have the same name,
    82  * a column name and several columns have the same name,
    83  * the value of the first matching column will be returned.
    83  * the value of the first matching column will be returned.
    84  * The column name option is
    84  * The column name option is
   197      * re-executed, or is used to retrieve the next result from a
   197      * re-executed, or is used to retrieve the next result from a
   198      * sequence of multiple results.
   198      * sequence of multiple results.
   199      *<p>
   199      *<p>
   200      * Calling the method <code>close</code> on a <code>ResultSet</code>
   200      * Calling the method <code>close</code> on a <code>ResultSet</code>
   201      * object that is already closed is a no-op.
   201      * object that is already closed is a no-op.
   202      * <P>
   202      *
   203      * <p>
       
   204      *
   203      *
   205      * @exception SQLException if a database access error occurs
   204      * @exception SQLException if a database access error occurs
   206      */
   205      */
   207     void close() throws SQLException;
   206     void close() throws SQLException;
   208 
   207