Deprecated API


Contents
Deprecated Fields
javax.sql.rowset.CachedRowSet.COMMIT_ON_ACCEPT_CHANGES
          Because this field is final (it is part of an interface), its value cannot be changed. 
 

Deprecated Methods
java.sql.ResultSet.getBigDecimal(int, int)
            
java.sql.CallableStatement.getBigDecimal(int, int)
          use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName) 
java.sql.ResultSet.getBigDecimal(String, int)
            
java.sql.Time.getDate()
            
java.sql.Time.getDay()
            
java.sql.Date.getHours()
            
java.sql.DriverManager.getLogStream()
            
java.sql.Date.getMinutes()
            
java.sql.Time.getMonth()
            
java.sql.Date.getSeconds()
            
java.sql.ResultSet.getUnicodeStream(int)
          use getCharacterStream in place of getUnicodeStream 
java.sql.ResultSet.getUnicodeStream(String)
          use getCharacterStream instead 
java.sql.Time.getYear()
            
java.sql.Time.setDate(int)
            
java.sql.Date.setHours(int)
            
java.sql.DriverManager.setLogStream(PrintStream)
            
java.sql.Date.setMinutes(int)
            
java.sql.Time.setMonth(int)
            
java.sql.Date.setSeconds(int)
            
java.sql.PreparedStatement.setUnicodeStream(int, InputStream, int)
            
javax.sql.rowset.BaseRowSet.setUnicodeStream(int, InputStream, int)
          getCharacterStream should be used in its place 
java.sql.Time.setYear(int)
            
 

Deprecated Constructors
java.sql.Date(int, int, int)
          instead use the constructor Date(long date) 
java.sql.Time(int, int, int)
          Use the constructor that takes a milliseconds value in place of this constructor 
java.sql.Timestamp(int, int, int, int, int, int, int)
          instead use the constructor Timestamp(long millis) 
 



Java is a trademark or registered trademark of Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A All Rights Reserved.