src/share/classes/com/sun/rowset/JoinRowSetImpl.java

Print this page

        

@@ -1151,10 +1151,11 @@
      *         result is <code>null</code>
      * @throws SQLException if the given column index is out of bounds,
      *            the cursor is not on a valid row, or this method fails
      * @deprecated
      */
+    @Deprecated
     public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
         return crsInternal.getBigDecimal(columnIndex);
     }
 
     /**

@@ -1262,10 +1263,11 @@
      * as a stream of two byte Unicode characters.  If the value is SQL NULL
      * then the result is null.
      * @throws SQLException if an error occurs
      * @deprecated
      */
+    @Deprecated
     public java.io.InputStream getUnicodeStream(int columnIndex) throws SQLException {
         return crsInternal.getUnicodeStream(columnIndex);
     }
 
     /**

@@ -1434,10 +1436,11 @@
      *            this rowset's column names or the cursor is not on one of
      *            this rowset's rows or its insert row
      * @deprecated use the method <code>getBigDecimal(String columnName)</code>
      *             instead
      */
+    @Deprecated
     public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
         return crsInternal.getBigDecimal(columnName);
     }
 
     /**

@@ -1550,10 +1553,11 @@
      * @throws SQLException if the given column name does not match one of
      *            this rowset's column names or the cursor is not on one of
      *            this rowset's rows or its insert row
      * @deprecated use the method <code>getCharacterStream</code> instead
      */
+    @Deprecated
     public java.io.InputStream getUnicodeStream(String columnName) throws SQLException {
         return crsInternal.getUnicodeStream(columnName);
     }
 
     /**