*** ./org/postgresql/jdbc1/PreparedStatement.java.orig Tue Dec 26 11:50:03 2000 --- ./org/postgresql/jdbc1/PreparedStatement.java Tue Dec 26 11:15:52 2000 *************** *** 164,170 **** */ public void setByte(int parameterIndex, byte x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 164,170 ---- */ public void setByte(int parameterIndex, byte x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 177,183 **** */ public void setShort(int parameterIndex, short x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 177,183 ---- */ public void setShort(int parameterIndex, short x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 190,196 **** */ public void setInt(int parameterIndex, int x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 190,196 ---- */ public void setInt(int parameterIndex, int x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 203,209 **** */ public void setLong(int parameterIndex, long x) throws SQLException { ! set(parameterIndex, (new Long(x)).toString()); } /** --- 203,209 ---- */ public void setLong(int parameterIndex, long x) throws SQLException { ! set(parameterIndex, Long.toString(x)); } /** *************** *** 216,222 **** */ public void setFloat(int parameterIndex, float x) throws SQLException { ! set(parameterIndex, (new Float(x)).toString()); } /** --- 216,222 ---- */ public void setFloat(int parameterIndex, float x) throws SQLException { ! set(parameterIndex, Float.toString(x)); } /** *************** *** 229,235 **** */ public void setDouble(int parameterIndex, double x) throws SQLException { ! set(parameterIndex, (new Double(x)).toString()); } /** --- 229,235 ---- */ public void setDouble(int parameterIndex, double x) throws SQLException { ! set(parameterIndex, Double.toString(x)); } /** *** ./org/postgresql/jdbc1/ResultSet.java.orig Tue Dec 26 11:50:03 2000 --- ./org/postgresql/jdbc1/ResultSet.java Tue Dec 26 11:22:41 2000 *************** *** 127,133 **** */ public void close() throws SQLException { ! // No-op } /** --- 127,134 ---- */ public void close() throws SQLException { ! //release resources held (memory for tuples) ! rows.setSize(0); } /** *** ./org/postgresql/jdbc2/PreparedStatement.java.orig Tue Dec 26 11:50:04 2000 --- ./org/postgresql/jdbc2/PreparedStatement.java Tue Dec 26 11:14:33 2000 *************** *** 164,170 **** */ public void setByte(int parameterIndex, byte x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 164,170 ---- */ public void setByte(int parameterIndex, byte x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 177,183 **** */ public void setShort(int parameterIndex, short x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 177,183 ---- */ public void setShort(int parameterIndex, short x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 190,196 **** */ public void setInt(int parameterIndex, int x) throws SQLException { ! set(parameterIndex, (new Integer(x)).toString()); } /** --- 190,196 ---- */ public void setInt(int parameterIndex, int x) throws SQLException { ! set(parameterIndex, Integer.toString(x)); } /** *************** *** 203,209 **** */ public void setLong(int parameterIndex, long x) throws SQLException { ! set(parameterIndex, (new Long(x)).toString()); } /** --- 203,209 ---- */ public void setLong(int parameterIndex, long x) throws SQLException { ! set(parameterIndex, Long.toString(x)); } /** *************** *** 216,222 **** */ public void setFloat(int parameterIndex, float x) throws SQLException { ! set(parameterIndex, (new Float(x)).toString()); } /** --- 216,222 ---- */ public void setFloat(int parameterIndex, float x) throws SQLException { ! set(parameterIndex, Float.toString(x)); } /** *************** *** 229,235 **** */ public void setDouble(int parameterIndex, double x) throws SQLException { ! set(parameterIndex, (new Double(x)).toString()); } /** --- 229,235 ---- */ public void setDouble(int parameterIndex, double x) throws SQLException { ! set(parameterIndex, Double.toString(x)); } /** *** ./org/postgresql/jdbc2/ResultSet.java.orig Tue Dec 26 11:50:04 2000 --- ./org/postgresql/jdbc2/ResultSet.java Tue Dec 26 11:22:46 2000 *************** *** 128,134 **** */ public void close() throws SQLException { ! // No-op } /** --- 128,135 ---- */ public void close() throws SQLException { ! //release resources held (memory for tuples) ! rows.setSize(0); } /**