bayard 2002/12/16 22:41:33
Modified: dbutils/src/java/org/apache/commons/dbutils/driver
ResultSetWrapper.java
Log:
Placed the deprecated tags on the methods that ResultSet deprecates.
Revision Changes Path
1.3 +12 -0
jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/driver/ResultSetWrapper.java
Index: ResultSetWrapper.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/driver/ResultSetWrapper.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ResultSetWrapper.java 11 Nov 2002 03:15:02 -0000 1.2
+++ ResultSetWrapper.java 17 Dec 2002 06:41:33 -0000 1.3
@@ -76,6 +76,9 @@
return this.rs.getDouble(idx);
}
+ /**
+ * @deprecated
+ */
public BigDecimal getBigDecimal(int idx, int n) throws SQLException {
return this.rs.getBigDecimal(idx, n);
}
@@ -100,6 +103,9 @@
return this.rs.getAsciiStream(idx);
}
+ /**
+ * @deprecated
+ */
public InputStream getUnicodeStream(int idx) throws SQLException {
return this.rs.getUnicodeStream(idx);
}
@@ -140,6 +146,9 @@
return this.rs.getDouble(column);
}
+ /**
+ * @deprecated
+ */
public BigDecimal getBigDecimal(String column, int n) throws SQLException {
return this.rs.getBigDecimal(column, n);
}
@@ -164,6 +173,9 @@
return this.rs.getAsciiStream(column);
}
+ /**
+ * @deprecated
+ */
public InputStream getUnicodeStream(String column) throws SQLException {
return this.rs.getUnicodeStream(column);
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>