Commit be281916 authored by Peter Mount's avatar Peter Mount

Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk

        - Applied patch submitted by John Schutz <schutz@austin.rr.com> that
          fixed a bug with ANT's SQL functions (not needed for building but nice
          to have fixed).
parent 8fe8fc9d
Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk
- Applied patch submitted by John Schutz <schutz@austin.rr.com> that
fixed a bug with ANT's SQL functions (not needed for building but nice
to have fixed).
Thu Jan 18 17:30:00 GMT 2001 peter@retep.org.uk Thu Jan 18 17:30:00 GMT 2001 peter@retep.org.uk
- Added new error message into errors.properties "postgresql.notsensitive" - Added new error message into errors.properties "postgresql.notsensitive"
This is used by jdbc2.ResultSet when a method is called that should This is used by jdbc2.ResultSet when a method is called that should
......
...@@ -281,7 +281,9 @@ public class Statement implements java.sql.Statement ...@@ -281,7 +281,9 @@ public class Statement implements java.sql.Statement
*/ */
public java.sql.ResultSet getResultSet() throws SQLException public java.sql.ResultSet getResultSet() throws SQLException
{ {
return result; if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
return result;
return null;
} }
/** /**
......
...@@ -291,7 +291,9 @@ public class Statement implements java.sql.Statement ...@@ -291,7 +291,9 @@ public class Statement implements java.sql.Statement
*/ */
public java.sql.ResultSet getResultSet() throws SQLException public java.sql.ResultSet getResultSet() throws SQLException
{ {
return result; if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
return result;
return null;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment