Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk
Peter Mount <peter@retep.org.uk>
Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk
- Fixed bug where Statement.setMaxRows() was a global setting. Now
limited to just itself.
- Changed LargeObject.read(byte[],int,int) to return the actual number
of bytes read (used to be void).
- LargeObject now supports InputStream's!
- PreparedStatement.setBinaryStream() now works!
- ResultSet.getBinaryStream() now returns an InputStream that doesn't
copy the blob into memory first!
- Connection.isClosed() now tests to see if the connection is still alive
rather than if it thinks it's alive.
Files
| Path | Change | +/− |
|---|---|---|
| src/interfaces/jdbc/CHANGELOG | modified | +11 −0 |
| src/interfaces/jdbc/example/basic.java | modified | +40 −28 |
| src/interfaces/jdbc/jdbc.jpx | modified | +1 −1 |
| src/interfaces/jdbc/org/postgresql/Connection.java | modified | +7 −2 |
| src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java | modified | +3 −2 |
| src/interfaces/jdbc/org/postgresql/jdbc2/Connection.java | modified | +22 −2 |
| src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java | modified | +44 −26 |
| src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java | modified | +9 −0 |
| src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java | modified | +18 −13 |
| src/interfaces/jdbc/org/postgresql/largeobject/BlobInputStream.java | added | +156 −0 |
| src/interfaces/jdbc/org/postgresql/largeobject/BlobOutputStream.java | added | +102 −0 |
| src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java | modified | +29 −23 |