From: <one...@us...> - 2002-12-15 05:12:43
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv26052 Modified Files: Environment.java ScrollableResults.java Log Message: added getClob() Index: Environment.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/Environment.java,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** Environment.java 30 Nov 2002 08:18:59 -0000 1.78 --- Environment.java 15 Dec 2002 05:12:40 -0000 1.79 *************** *** 39,43 **** public final class Environment { ! private static final String VERSION = "1.2 final"; /** --- 39,43 ---- public final class Environment { ! private static final String VERSION = "1.2.1"; /** Index: ScrollableResults.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/ScrollableResults.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ScrollableResults.java 14 Dec 2002 09:27:55 -0000 1.7 --- ScrollableResults.java 15 Dec 2002 05:12:41 -0000 1.8 *************** *** 3,6 **** --- 3,8 ---- import java.math.BigDecimal; + import java.sql.Blob; + import java.sql.Clob; import java.sql.SQLException; import java.util.Calendar; *************** *** 88,156 **** /** ! * Convenience method to read an integer */ public Integer getInteger(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a long */ public Long getLong(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a float */ public Float getFloat(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a boolean */ public Boolean getBoolean(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a double */ public Double getDouble(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a short */ public Short getShort(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a byte */ public Byte getByte(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a character */ public Character getCharacter(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a binary */ public byte[] getBinary(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a blob */ ! public java.sql.Blob getBlob(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a string */ public String getString(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a big_decimal */ public BigDecimal getBigDecimal(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a date, time or timestamp */ public Date getDate(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a locale */ public Locale getLocale(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a calendar or calendar date */ public Calendar getCalendar(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a currency */ //public Currency getCurrency(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a timezone */ public TimeZone getTimeZone(int col) throws SQLException, HibernateException; --- 90,162 ---- /** ! * Convenience method to read an <tt>integer</tt> */ public Integer getInteger(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>long</tt> */ public Long getLong(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>float</tt> */ public Float getFloat(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>boolean</tt> */ public Boolean getBoolean(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>double</tt> */ public Double getDouble(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>short</tt> */ public Short getShort(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>byte</tt> */ public Byte getByte(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>character</tt> */ public Character getCharacter(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>binary</tt> */ public byte[] getBinary(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>blob</tt> */ ! public Blob getBlob(int col) throws SQLException, HibernateException; ! /** ! * Convenience method to read a <tt>clob</tt> ! */ ! public Clob getClob(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>string</tt> */ public String getString(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>big_decimal</tt> */ public BigDecimal getBigDecimal(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>date</tt>, <tt>time</tt> or <tt>timestamp</tt> */ public Date getDate(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>locale</tt> */ public Locale getLocale(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>calendar</tt> or <tt>calendar_date</tt> */ public Calendar getCalendar(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>currency</tt> */ //public Currency getCurrency(int col) throws SQLException, HibernateException; /** ! * Convenience method to read a <tt>timezone</tt> */ public TimeZone getTimeZone(int col) throws SQLException, HibernateException; |