jdk/src/share/classes/java/sql/ResultSet.java
changeset 9258 b5a28d36265b
parent 6540 a4ae668f6125
child 14171 94eb36844bd7
equal deleted inserted replaced
9257:53e6d7bc31b0 9258:b5a28d36265b
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   135  * <code>Statement</code> object that
   135  * <code>Statement</code> object that
   136  * generated it is closed, re-executed, or used
   136  * generated it is closed, re-executed, or used
   137  * to retrieve the next result from a sequence of multiple results.
   137  * to retrieve the next result from a sequence of multiple results.
   138  *
   138  *
   139  * <P>The number, types and properties of a <code>ResultSet</code>
   139  * <P>The number, types and properties of a <code>ResultSet</code>
   140  * object's columns are provided by the <code>ResulSetMetaData</code>
   140  * object's columns are provided by the <code>ResultSetMetaData</code>
   141  * object returned by the <code>ResultSet.getMetaData</code> method.
   141  * object returned by the <code>ResultSet.getMetaData</code> method.
   142  *
   142  *
   143  * @see Statement#executeQuery
   143  * @see Statement#executeQuery
   144  * @see Statement#getResultSet
   144  * @see Statement#getResultSet
   145  * @see ResultSetMetaData
   145  * @see ResultSetMetaData
   420     /**
   420     /**
   421      * Retrieves the value of the designated column in the current row
   421      * Retrieves the value of the designated column in the current row
   422      * of this <code>ResultSet</code> object as
   422      * of this <code>ResultSet</code> object as
   423      * a stream of ASCII characters. The value can then be read in chunks from the
   423      * a stream of ASCII characters. The value can then be read in chunks from the
   424      * stream. This method is particularly
   424      * stream. This method is particularly
   425      * suitable for retrieving large <char>LONGVARCHAR</char> values.
   425      * suitable for retrieving large <code>LONGVARCHAR</code> values.
   426      * The JDBC driver will
   426      * The JDBC driver will
   427      * do any necessary conversion from the database format into ASCII.
   427      * do any necessary conversion from the database format into ASCII.
   428      *
   428      *
   429      * <P><B>Note:</B> All the data in the returned stream must be
   429      * <P><B>Note:</B> All the data in the returned stream must be
   430      * read prior to getting the value of any other column. The next
   430      * read prior to getting the value of any other column. The next