jdk/src/java.sql.rowset/share/classes/com/sun/rowset/JoinRowSetImpl.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
child 30655 d83f50188ca9
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
  1167      *        is <code>2</code>, and so on; must be <code>1</code> or larger
  1167      *        is <code>2</code>, and so on; must be <code>1</code> or larger
  1168      *        and equal to or less than the number of columns in the rowset
  1168      *        and equal to or less than the number of columns in the rowset
  1169      * @return the column value; if the value is SQL <code>NULL</code>, the
  1169      * @return the column value; if the value is SQL <code>NULL</code>, the
  1170      *         result is <code>null</code>
  1170      *         result is <code>null</code>
  1171      * @throws SQLException if the given column index is out of bounds,
  1171      * @throws SQLException if the given column index is out of bounds,
  1172      *            the cursor is not on a valid row, or the the value to be
  1172      *            the cursor is not on a valid row, or the value to be
  1173      *            retrieved is not binary
  1173      *            retrieved is not binary
  1174      */
  1174      */
  1175     public byte[] getBytes(int columnIndex) throws SQLException {
  1175     public byte[] getBytes(int columnIndex) throws SQLException {
  1176         return crsInternal.getBytes(columnIndex);
  1176         return crsInternal.getBytes(columnIndex);
  1177     }
  1177     }
  4127          wrs.readXml(iStream);
  4127          wrs.readXml(iStream);
  4128          crsInternal = (CachedRowSetImpl)wrs;
  4128          crsInternal = (CachedRowSetImpl)wrs;
  4129     }
  4129     }
  4130 
  4130 
  4131     /**
  4131     /**
  4132      * Creates an an output stream of the internal state and contents of a
  4132      * Creates an output stream of the internal state and contents of a
  4133      * <code>WebRowSet</code> for XML proceessing
  4133      * <code>WebRowSet</code> for XML proceessing
  4134      *
  4134      *
  4135      * @throws SQLException if a datasource access occurs
  4135      * @throws SQLException if a datasource access occurs
  4136      * @throws IOException if an IO exception occurs
  4136      * @throws IOException if an IO exception occurs
  4137      */
  4137      */